Microsoft Windows 2000
Microsoft SQL Server 2000 Enterprise
Recovery Method = Full
Production database file = 36,140MB current size, 26,535MB space used
Production log file = 1,322MB current size, 43MB space used
Autoshrink = NO
Backup schedule Monday-Saturday:
Log backups every 4 hours/daily
Differential database backups everyday at noon
Full database backups every night at 9pm
Sunday jobs
Job #1 -- 1AM
Step 1. Reindex all tables in production database
Step 2. Full database backup
Job #2 -- 10AM
Step 1. Log backup (22.5GB)
The log file doesn't seem to shrink after the full database backup (Job #1, Step #2). If I run a BACKUP LOG WITH TRUNCATE_ONLY, will that shrink the physical log size? If so, how much? The space allocated for the log changes as the log grows?!
Should I run a DBCC SHRINKFILE ([dbname],[target percent]) to shrink the file after Job #1, Step #2? My goal is to reduce the physical log file before Job #2.
Microsoft SQL Server 2000 Enterprise
Recovery Method = Full
Production database file = 36,140MB current size, 26,535MB space used
Production log file = 1,322MB current size, 43MB space used
Autoshrink = NO
Backup schedule Monday-Saturday:
Log backups every 4 hours/daily
Differential database backups everyday at noon
Full database backups every night at 9pm
Sunday jobs
Job #1 -- 1AM
Step 1. Reindex all tables in production database
Step 2. Full database backup
Job #2 -- 10AM
Step 1. Log backup (22.5GB)
The log file doesn't seem to shrink after the full database backup (Job #1, Step #2). If I run a BACKUP LOG WITH TRUNCATE_ONLY, will that shrink the physical log size? If so, how much? The space allocated for the log changes as the log grows?!
Should I run a DBCC SHRINKFILE ([dbname],[target percent]) to shrink the file after Job #1, Step #2? My goal is to reduce the physical log file before Job #2.