Posted On August 1, 2019

Microsoft Data Calculation for SQL & General Storage

kimconnect 0 comments
blog.KimConnect.com >> Windows >> Microsoft Data Calculation for SQL & General Storage

1 Byte = 8 bits
1 KB = 1024 bytes
1 MB = 1024 KB (or 1048576 bytes)
1 GB = 1024 MB (or  1073741824 bytes)
1 TB = 1024 GB (or 1099511627776 bytes)

Leave a Reply

Your email address will not be published. Required fields are marked *

Related Post

Update Root Hints on the DNS Server

You can use root hints to prepare servers that are authoritative for nonroot zones so…

How to manually point servers in the DMZ to WSUS server for updates

The servers in the DMZ are not part of the domain and you must manually…

An Exercise in Discover Whether an Active Directory Account Has RDP Access to Windows Bastion Hosts

Check Computers: $computernames='RDPSERVER01','RDPSERVER02','RDPSERVER03' invoke-command -computername $computernames {get-localgroupmember 'remote desktop users'}|select PSComputername,Name # Sample output PS…