We are having trouble backing up databases which have been compressed in SQL Server 2008 R2. If we select a compression level in SQL Backup, the backup hangs. If no compression is selected, the backup is sucessful. Has anyone else had similar issues?
Comments
1 comment
-
What version of the SQL Backup Agent are you running? Could you please run the following:
DECLARE @version nvarchar(16) EXEC master..sqbutility 1030, @version OUTPUT SELECT @version
and post the result?
Also, while the compressed backup is running on the compressed database, try running the following in intervals of 5 seconds:EXEC master..sqbstatus 1
Do the numbers increase?
Add comment
Please sign in to leave a comment.