Shrinking a database and specifying a percentage of free space
On 11 Apr, 2015
By : Charith Silva
No Comments
Views : 1663
Below code will shrink 80% free space and remains 20% free for database files. DBCC SHRINKDATABASE command shrink all data and log files for a specific database. To shrink one data or log file at a time for a specific database, execute the DBCC SHRINKFILE command.
|
USE Master; GO DBCC SHRINKDATABASE (databasename, 20); |
Related
About The Author
Charith Silva is a Microsoft certified SQL Server developer and database administrator who was graduated at Buckinghamshire New university in the UK. His career was started in 1998, primarily into Web application development, and later diversified into database development.
He has got a vast experience in SQL Server database development, Database administration and Business Intelligence development. He believes that sharing the knowledge is key to the success.
Number of Posts :
87
Leave a Comment