Quote:
Originally posted by cutcopypaste
excuse me for posting again but this was one of the missing.
how can i shrink _log.ldf file? it is about 1,39 gb. thanks...
|
Assuming that you are using SQL 2000, what may be happening is that the log file will not shrink unless the database is backed up. Microsofts new "feature" that makes you use the SQL backup.
The best way to keep the log file from ever becoming large is to create a backup device and then set a regularly scheduled backup for your database.
When we upgraded to SQL 2000 we had a similar problem on a database.
To setup a backup device:
Open Enterprise Manager, open Management
right click on backup and select new backup device
pick a name, then select Filename and select where you want the file stored then select ok.
Now that you have a backup device.
open databases
right click on your database, all tasks, backup database
select add...
Click on backup device, then select your device from the list, select ok
Select Database complete (or database differential if size is a concern and using this as an additional restore option is unimportant).
Select Overwrite existing media
click in the schedule checkbox then open the schedule screen
select recurring then setup how often you want this to occur. Keep in mind that this will overwrite your existing file, but sounds like this is not your primary backup.
"ok" out of everything and you should be set.
Brent