Hi Every one
I want to know what size of data a sql server 2008R2 database can store and what size is actually used and remaining data size
Loading
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
Manikandan MurugesanPosted Jun 15, 2017, 12:21 PM
Manikandan MurugesanPosted Jun 15, 2017, 12:18 PM
Rajkiran SwainPosted Jun 15, 2017, 5:59 AM
Sundaram SubramanianPosted Jun 15, 2017, 4:59 AM
Name AS Logical_Name,
Physical_Name, (size*8)/1024 SizeMB
FROM sys.master_files
WHERE DB_NAME(database_id) = 'AdventureWorks'
GO