Please start any new threads on our new site at https://forums.sqlteam.com. We've got lots of great SQL Server experts to answer whatever question you can come up with.

 All Forums
 SQL Server 2000 Forums
 Import/Export (DTS) and Replication (2000)
 DTS killing my transaction log

Author  Topic 

Tim
Starting Member

392 Posts

Posted - 2003-04-14 : 02:25:01
I have a dts package that calls another. The second one calles a stored procedure to delete some data and then insert some.

None of the packages use transactions, the delete/insert statements are not in transactions and the database (sql2k) is set to auto shrink.

Any ideas why the transaction log allocated during the package is not released at the end of it?



dshelton
Yak Posting Veteran

73 Posts

Posted - 2003-04-17 : 02:22:08
If you have a full or bulk logged recovery model for your database you will need to backup the log after you call the procedure to free up some space in your log.

Go to Top of Page

Tim
Starting Member

392 Posts

Posted - 2003-04-21 : 09:57:31


oops

simple recovery (of course)

thanks for that.

Go to Top of Page
   

- Advertisement -