dinsdag 25 oktober 2011

SQLServer: shrink the tempdb

This is how you shrink the tempdb in SQLServer 2008 R2:


use tempdb;
dbcc shrinkfile (tempdev, 0)
go
dbcc shrinkfile (templog, 0)
go

Geen opmerkingen:

Een reactie posten