Forum Replies Created

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

  • RE: Log File growth after re-index

    Paul,

    You're right there's no need to shrink the tempdb. I was just using that as an example. Obviously you need to change the database and log file name...

  • RE: Log File growth after re-index

    True, but that's why you backup the log file every so often during the day...

    Jim

  • RE: Log File growth after re-index

    Here's a query that I use to shrink the log file and the database:

    --Shrinks a database Manually

    sp_dboption 'temp', 'trunc. log on chkpt.', 'TRUE'--Set a checkpoint

    use tempdb checkpoint--Declare the checkpoint

    go

    --Shrink the...

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