How can I get release unused space to the OS ?
I tried
DBCC SHRINKDATABASE(QlikDataWarehouse, truncateonly)
But nothing happens , any suggestion ?
How can I get release unused space to the OS ?
I tried
DBCC SHRINKDATABASE(QlikDataWarehouse, truncateonly)
But nothing happens , any suggestion ?
Your truncateonly
parameter doesn't allow SQL Server to rewrite data to free up space. Back up the database (necessary to allow the transaction log to be truncated), then shrink it without the truncateonly
option.