Shrink DataBase
it shrinks database
Code:
USE
master BACKUP LOG dbToShrink
WITH
TRUNCATE_ONLY DBCC SHRINKDATABASE
(
dbToShrink
)