Wrox Programmer Forums
|
SQL Server 2000 General discussion of Microsoft SQL Server -- for topics that don't fit in one of the more specific SQL Server forums. version 2000 only. There's a new forum for SQL Server 2005.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the SQL Server 2000 section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old January 27th, 2004, 08:49 PM
Authorized User
 
Join Date: Jun 2003
Posts: 62
Thanks: 0
Thanked 0 Times in 0 Posts
Default transaction log full

while i delete a table using a SQL command

delete from table1
where inv_date between ? and ?

the error message appear show that the transaction log full,
i try to backup the database and shrink the database also cannot resolve a problem.
my harddisk space have a lot of space.

i had tried to create another database and transfer the table1 record into the new database table2
but during import the data, the transaction log also full for the new database,

any problem on my SQL server?


urgent!


Thanks and Regards
 
Old January 28th, 2004, 09:59 AM
Friend of Wrox
 
Join Date: Jun 2003
Posts: 1,998
Thanks: 0
Thanked 3 Times in 3 Posts
Default

Try "backup log <log_name> with truncate_only" to reduce the log size. This reduces the log size by truncating it. Also you can change the logging type by right-clicking the database and select properties, click the options tab, and in the recovery section, change the drop-down box to simple. This should help your log not grow so fast. The tradeoff is that it doesn't log as much information as you normally would want it to log.

Hope this helps,

Brian





Similar Threads
Thread Thread Starter Forum Replies Last Post
Transaction log carumuga SQL Server 2005 0 August 7th, 2008 05:38 AM
Transaction Log Error [email protected] SQL Server 2000 1 June 4th, 2008 09:26 PM
Truncating Transaction Log sgsandeep SQL Server 2000 2 July 11th, 2006 08:51 AM
use of transaction log madhukp SQL Server 2000 1 July 16th, 2004 06:20 PM
Transaction Log ColdFusionRO SQL Server 2000 3 July 16th, 2003 01:47 PM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.