Thanks in advance,
-Todd
The transaction logs will keep growing in size unless you do at least one of
the following:
1. Take regular backups of the database (look up in Books Online DUMP in SQL
Server 6.x, BACKUP in SQL Server 7.0). This is imperative if you need to be
able to recover the database in case of a server crash. When you backup the
database, you can truncate the transaction logs as they are now stored
elsewhere.
2. If the database is only in development mode, or if it can recreated from
an external source, or if it is not critical that transactions are lost, the
look up the "trunc. log on chkpt." option which will truncate the log for
you automatically (but will NOT allow you to recover from a server crash).
ToddNKay wrote in message ...