March 11, 2007 at 4:15 pm
i remember in sql 2000, that i could simply set the
'truncate log on checkpoint' option from the 'options'
tab. in sql 2005 management studio i don't see this
listed under 'options'
where did it go?
i suppose i could just use sp_dboption 'mydb', 'trunc. log on chkpt', 'true' unless it's been depricated in 2005
but... where is this available from GUI? not that i prefer
gui, but just wondering.
_________________________
March 11, 2007 at 7:14 pm
It's been "summarized" into the "Recovery Mode". I believe the "Simple" recovery mode enables it (and SELECT INTO/Bulk Copy, etc).
--Jeff Moden
Change is inevitable... Change for the better is not.
March 11, 2007 at 9:21 pm
You can't set TRUNCATE LOG ON CHK POINT through EM in 2000 and the same way in 2005....but it is included in recovery model as Jeff mentioned...
Where as you can set this using the QA or Query Window...
sp_dboption
'pubs', 'trunc. log on chkpt.', true
MohammedU
Microsoft SQL Server MVP
March 11, 2007 at 9:48 pm
Please folks... make sure you really, really know what you're doing... if you set 'trunc. log on chkpt.' to true, you have a little surprise coming... try this...
Set the recovery model to "FULL" on pubs using EM. Do a refresh and then double check that it's actually set to "FULL".
Then, run the sp_dboption 'pubs', 'trunc. log on chkpt.', true command.
Now, go back to EM, do a refresh, and see what the recovery model is set to... SURPRISE!!!
--Jeff Moden
Change is inevitable... Change for the better is not.
Viewing 4 posts - 1 through 3 (of 3 total)
You must be logged in to reply to this topic. Login to reply