December 13, 2004 at 9:10 am
Thanks
Tom
December 13, 2004 at 10:41 am
Sounds to me that that there is not enough physical space on your disk to perform the increase.
Check the space usage of your physical disk and increase as necessary. If you cannot increase the size of disk, then think about halving the file, truncating the log and then continuing with the rest of the file.
December 13, 2004 at 11:37 am
DTS usually uses a form of BCP to do the loads. If you don't care about transaction control, then first remove the indexes on the table and the load operation will then be non-logged (and much faster). Add the indexes back after the load is complete, though if you have a clustered one you'll need space in your database and you may blow out the log doing that...
December 13, 2004 at 1:36 pm
Is the correct way to turncate the log without saving
Backup LOG <dbname> Truncate_Only
December 14, 2004 at 10:24 am
Tom,
The correct syntax is BACKUP LOG <dbname> WITH TRUNCATE_ONLY
Greg
Greg
December 14, 2004 at 10:29 am
Thanks everyone for your help. I have figured out what was wrong and what to do. So it was an easy solution. Truncate the log and shrink the database was my answer and all worked.
Thanks for pointing me in the right direction
Tom
Viewing 6 posts - 1 through 5 (of 5 total)
You must be logged in to reply to this topic. Login to reply