Looking at the error in the %WINDIR%/Temp/sgvault/sgvault.log file, we saw:
Code: Select all
----8/22/2012 11:14:07 AM testuser--INEDOBLDSV1(192.168.44.61)--SSL Disabled System.Data.SqlClient.SqlException: Could not allocate space for object 'dbo.tblfsobjectlabelviews'.'idxfsobjectlabelviewslabelidtreelevelfullpathhashparentpathhash' in database 'sgvault' because the 'PRIMARY' filegroup is full. Create disk space by deleting unneeded files, dropping objects in the filegroup, adding additional files to the filegroup, or setting autogrowth on for existing files in the filegroup.
at System.Data.SqlClient.SqlConnection.OnError(SqlException exception, Boolean breakConnection)
...
Since this particular database instance was SQL Server 2008 Express, the database would fail when attempting to expand because there is a 4GB limit to database under this engine.
Upgrading to SQL Server 2008 R2 Standard resolved the issue. Hope this helps!