MSSQLCity.Com - All about MS SQL
     
About Us  
SSWUG Articles  
Articles  
FAQ  
Administration  
Backup/Restore  
Connectivity  
Development  
General  
Installation  
OLAP  
Replication  
Transfer/move  
Trouble  
SQL 6.5  
Scripts  
Tips  
Test Exams  
Advertise  
Download  
History  
Search  
Traffic  
Related Links  
     
Your button logo
Add to Favorites
 
     
 


I am getting an error 1105 - what can I do?

Answer:

The error 1105 means that transaction log is full.
There are to ways to resolve the error 1105:

  • increase the size of the transaction log
  • truncate transaction log


  • Because the transaction log cannot grow automatically in SQL Server 6.5, you should increase the size of the transaction log manually by using the ALTER DATABASE statement.

    To truncate transaction log, you can set the Truncate Log On Checkpoint database option, or run the DUMP TRANSACTION command with NO_LOG parameter.

    See "Causes of the Transaction Log Filling Up" in SQL Server Books Online.


     

     
    Visit The SQL Server Worldwide User's Group for all the latest news and information about SQL Server, Oracle, DB2 and XML for developers and administrators.

    (c) 1997, 2005 Bits on the Wire, Inc