Microsoft Dynamics BC 19.5 With In Version
Install with the demo version
after that upgrade SQL server version
than please restore the database with the latest one.
Clear DB Permissions
MicrosoftDynamicsNavServer$BC190
USE [Database Name]
GO
delete from [dbo].[User]
delete from [dbo].[Access Control]
delete from [dbo].[User Property]
delete from [dbo].[Page Data Personalization]
delete from [dbo].[User Default Style Sheet]
delete from [dbo].[User Metadata]
delete from [dbo].[User Personalization]
GO to business central shell
run as administrator
Than Set-NAVServerPermission
for users and
Update services for the account and sql + BC 19.5 versions
🧠 Understanding Subnet Masks
* Understanding Subnet Masks A subnet mask divides an IP address into: • Network bits (1s) — identify the network • Host bits (0s) — identify the devices (hosts) within that network Each octet (group of 8 bits) in an IP address has a total of 8 bits, and the decimal value of all 8 bits set to 1 is 255. Binary to Decimal Reference Table Binary Bit Value 2^n 2⁰ 1 1 2¹ 2 2 2² 4 4 2³ 8 8 2⁴ 16 16 2⁵ 32 32 2⁶ 64 64 2⁷ 128 128 When you sum all these up: 1 + 2 + 4 + 8 + 16 + 32 + 64 + 128 = 255 That’s why a full octet of 1s (11111111) equals 255 in decimal. ________________________________________ 🌐 Example: 192.168.1.0 /24 • /24 means 24 bits are used for the network. • This leaves 8 bits (since there are 32 total bits in IPv4) for hosts. Subnet Mask Binary: 11111111.11111111.11111111.00000000 Decimal: 255.255.255.0 Network and Host Bits • Network bits: 24 (the first three octets) • Host bits: 8 (the last octet) ________________________________________ 🧮 Calculating the Number of IP Addres...
Comments
Post a Comment