To get the size of the mdf+ldf files taken together, use the following
exec sp_helpdb
There is another method that gives the size of the data and the log files separately. The size column is not the actual size but the number of 8KB extents (a measure of size in SQL Server). Therefore to get the actual size, we need to multiply the third column with eight to get the actual size in KBs.
use master
select name, type_desc, size, size*8 as KB, size*8/1024 as MB from sys.master_files
The same can also be achieved if we want to view the details of any one single database. For example to find the details of only the master database, use the following
use master
select name, type_desc, size, size*8 as KB, size*8/1024 as MB from sys.database_files
All the above methods are consistent and give the correct database size.
2 comments:
Hi would you mind letting me know which web host you're working with? I've loaded your blog in 3 different browsers and I must say this blog loads a lot quicker then most. Can you recommend a good hosting provider at a reasonable price? Thank you, I appreciate it! facebook log in facebook
I admire what you have done here. I like the part where you say you are doing this to give back but I would assume by all the comments that this is working for you as well. aliquota imu genova
Post a Comment