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

PowerShell: How To Configure Static IP Address

$nicName='NIC1' $ipaddress='192.168.0.222' $cidrPrefix=24 $defaultGateway='192.168.0.1' $dnsServers=@('8.8.8.8','4.4.2.2') $disableIpv6=$true function setNic($nicName,$ipAddress,$cidrPrefix,$defaultGateway,$dnsServers,$disableIpv6=$true ){ $ifIndex=(get-netadapter|?{$_.Name -eq $nicName}).ifIndex New-NetIPAddress -InterfaceIndex $ifIndex…

WordPress Multi-site with Single Sign On (SSO)

Step 1: Login Access the correct environment using wp_admin login with the DevOps standard password:…

How To Fix History Disabled in Task Scheduler

Issue: When checking certain tasks, one may find that the 'History' tab is appended with…