Hi,
How can I increase the transaction log size of my sql server 2005 database i can execute the shrink and backup log which can shrink the .ldf file to 1MB. However, since my dts involves a lot of inserts and updates, the my transaction log grows to 700MB in the middle of my dts execution. How can i increase the transaction log size maximum capacity to probably 1.5GB just so it can accommodate my full dts execution
BTW, this is my commands to shrink the log file:
DBCC
SHRINKFILE(<dbname>_log, 1)BACKUP
LOG <dbname> WITH NO_LOGDBCC
SHRINKFILE(<dbname>_log, 1)
cherriesh