DA - Production report files missing
DA 2008 SP2
I just walked a new user through completing a search and running production. However, when we ran production all we got were the .MSG files... no HTML report files were generated. In the production options I don't see an option to turn this on or off so I'm not sure why it wouldn't be there. Any thoughts?
Thanks,
-Brian
Filed under: Enterprise Vault, Backup and Archiving
are you sure the process
are you sure the process completed?
There is also this:
http://support.veritas.com/docs/303818
System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding.
RESOLUTION:
A. Manually shrink the Transaction log file
-- Step 1. Determine File Size before shrinking
DBCC SQLPERF(LOGSPACE)
-- Step 2. Switch recovery mode to Simple
ALTER DATABASE databasename -- replace databasename
SET RECOVERY SIMPLE
GO
-- Step 3. Shrink the truncated log file to 1 MB.
USE databasename -- Replace the databasename
DBCC SHRINKFILE (logname_Log, 1) -- Replace the logname_log
GO
-- Step 4. Reset the database recovery mode to Full.
ALTER DATABASE databasename -- replace databasename
SET RECOVERY FULL;
GO
-- Step 5. Determine New File Size after shrinking
DBCC SQLPERF(LOGSPACE)
B. Set the Transaction log file for 'Enable Autogrowth' with unrestricted growth* and File Growth In Megabytes 500.
308418: Routine monitoring and maintenance for the Accelerator environment
http://support.veritas.com/docs/308418
311797: Unable to change the Transaction logs to unrestricted growth
http://support.veritas.com/docs/311797
Tony Sterling
bluesource
Hmm...I'm sure the production
Hmm...I'm sure the production run completed. It was very fast as it was only 200 messages. I'm going to start looking into the possible SQL issues. Thanks!
Would you like to reply?
Login or Register to post your comment.