SQL Server - what is the size of my database if this is the output from sp_spaceused -
i ran command:
exec sp_spaceused
the output was:
so size of database? - 4768.25 - 4076.57 = 691.68 mb (1st table)
or
19896 kb (2nd table)?
edit
i'm using sql server 2005 express has "database size" limit of 4 gb. in context of "database size", if calculate how far space limit - should consider unallocated space database can still use?
your database size 4768.25mb
sql server allocate database file bigger used space. unallocated space filled until database file needs 'grown' again
Comments
Post a Comment