Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
Author |
Topic |
shilpaprele
Starting Member
6 Posts |
Posted - 2012-10-01 : 01:24:06
|
I am using express edition of SQL 2008 R2. As per the microsoft sites we can have max DB size as 10GB. But in my sql server DB property page shows current size as 15GB. I dont know how this is possible. Do you have any idea? |
|
chadmat
The Chadinator
1974 Posts |
Posted - 2012-10-01 : 13:57:14
|
That includes the Log size I think.-Chad |
|
|
jackv
Master Smack Fu Yak Hacker
2179 Posts |
Posted - 2012-10-02 : 01:42:25
|
To check the size of the data and log files check - select db_name(database_id) as dbname,type_desc,(size * 8) /1024 as size_MB,(size * 8) /1024/1024 as size_GB from sys.master_files order by nameJack Vamvas--------------------http://www.sqlserver-dba.com |
|
|
|
|
|