I have a database w/ the following spec's.
Total Size: 37769.69MB
Free Space: 10078MB
Used Space: 22691.69MB
I want to remove the free space from the database. I've tried the following
dbcc shrindatabase('dbName',0, truncateonly)
dbcc shrinkdatabase('dbNmae', 23000)
dbcc shrinkfile('dbName_Data', 0,truncateonly)
dbcc shrinkfile('dbNmae', 23000)
None of these statements has changed the files size. So what am I missing?
Thanks
Total Size: 37769.69MB
Free Space: 10078MB
Used Space: 22691.69MB
I want to remove the free space from the database. I've tried the following
dbcc shrindatabase('dbName',0, truncateonly)
dbcc shrinkdatabase('dbNmae', 23000)
dbcc shrinkfile('dbName_Data', 0,truncateonly)
dbcc shrinkfile('dbNmae', 23000)
None of these statements has changed the files size. So what am I missing?
Thanks