Notice: This website is an unofficial Microsoft Knowledge Base (hereinafter KB) archive and is intended to provide a reliable access to deleted content from Microsoft KB. All KB articles are owned by Microsoft Corporation. Read full disclaimer for more details.

INF: Shrinking the Transaction Log in SQL Server 2000 with DBCC SHRINKFILE


Summary

Shrinking the log in SQL Server 2000 is no longer a deferred operation. A shrink operation attempts to shrink the file immediately. However, in some circumstances it may be necessary to perform additional actions before the log file is shrunk to the desired size.

↑ Back to the top


More Information

When DBCC SHRINKFILE is run, SQL Server 2000 shrinks the log file by removing as many virtual log files as it can to attempt to reach the target size. If the target file size is not reached, SQL Server places dummy log entries in the last virtual log file until the virtual log is filled and moves the head of the log to the beginning of the file. The following actions are then required to complete the shrinking of the transaction log:

  1. You must run a BACKUP LOG statement to free up space by removing the inactive portion of the log.
  2. You must run DBCC SHRINKFILE again with the desired target size until the log file shrinks to the target size.
The following example demonstrates this with the pubs database and attempts to shrink the pubs_log file to 2 MB:

  1. Run this code:
    DBCC SHRINKFILE(pubs_log, 2)
    NOTE: If the target size is not reached, proceed to the next step.
  2. Run this code if you want to truncate the transaction log and not keep a backup of the transaction log. Truncate_only invalidates your transaction log backup sequence. Take a full backup of your database after you perform backup log with truncate_only:


    BACKUP LOG pubs WITH TRUNCATE_ONLY
    -or-
    Run this code if you want to keep a backup of your transaction log and keep your transaction log backup sequence intact. See SQL Server Books Online topic "BACKUP" for more information:
    BACKUP LOG pubs TO pubslogbackup
  3. Run this code:
    DBCC SHRINKFILE(pubs_log,2)


    The transaction log has now been shrunk to the target size.

REFERENCES

For more information, see the Shrinking the Transaction Log and DBCC SHRINKFILE topics in SQL Server 2000 Books Online.

For additional information about shrinking the transaction log in SQL Server 7.0, click the article number below to view the article in the Microsoft Knowledge Base:

256650 INF: How to Shrink the SQL Server Transaction Log

↑ Back to the top


Keywords: kbsqlsetup, kbdsupport, kbinfo, kbbillprodsweep, kb

↑ Back to the top

Article Info
Article ID : 272318
Revision : 3
Created on : 4/18/2018
Published on : 4/19/2018
Exists online : False
Views : 341