Use one of the following three methods to truncate the transaction log, then change the SQL recovery method for the Ensemble DB to Simple.
- Make a full backup from the Ensemble database, this will truncate the transaction log.
- Maintain the Ensemble database the following article:
Creating a maintenance plan in SQL Server 2005 or 2008 to optimize database performance
http://www.symantec.com/business/support/index?page=content&id=HOWTO8589
- Truncate the transaction log manually:
To truncate the current transaction logs do the following.
a. Open SQL Server Management Studio on the ServiceDesk's SQL server.
b. Click on the New Query button in "SQL Server Management Studio"
c. Paste the following into the first SQL query tab.
Use Ensemble
BACKUP LOG "Ensemble" WITH TRUNCATE_ONLY
DBCC Shrinkfile('Ensemble_Log',truncateonly)
d. Click on the Execute button.
Now change the SQL recovery method for the Ensemble DB to Simple. This will prevent the transaction logs from filling in the future.
Warning: As a precaution backup the SQL ensemble Database before performing the instructions below.
- Open SQL Server Management Studio on the ServiceDesk's SQL server.
- Go to SQLserverName > Databases > Ensemble.
- Right click the Ensemble DB and click Properties.
- Click Options.
Note:IF the recovery model is set the full then do the following.
- In the Recovery Model dropdown change the model from Full to Simple.
- Close the Database Properties by clicking OK.
For more information on truncating the transaction log, please refer to the following article:
How to shrink the Notification Server transaction log
http://www.symantec.com/business/support/index?page=content&id=HOWTO1752
Applies To
Service Desk 7.0