Transaction protocol

  • Hi all, we have an SQL-Server 2000 database that takes 7GB disc space. The transaction protocol takes additional 7GB disc space. All we daily do with that database is to delete all rows from each table and then insert new ones. How can I turn off the transaction protocol? What ist that protokol in my case useful for? Regards Ralf

  • If you are deleting all rows from the table you need to use the truncate table statement rather than the delete from table statement as the truncate table statement is a non logged operation, each row deleted is logged when you use delete from statement, so your transaction log will have thousands on delete transactions in the log.

    Hope this helps.

    Regards

    Carl 

  • Hi Carl, thanks for Your help.

    Regards

    Ralf

Viewing 3 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic. Login to reply