Please start any new threads on our new
site at https://forums.sqlteam.com. We've got lots of great SQL Server
experts to answer whatever question you can come up with.
| Author |
Topic |
|
peera
Starting Member
11 Posts |
Posted - 2003-11-14 : 10:11:22
|
| hiwhere do i set the t-log save on check point, i dont see this on db options using sql 2000 ent ed, and when does the auto update statics occurthx |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-11-14 : 11:58:33
|
| Transaction log save on checkpoint? Do you mean SIMPLE database recovery model? Auto update statistics occurs when SQL Server needs it.Tara |
 |
|
|
gercr
Yak Posting Veteran
53 Posts |
Posted - 2003-11-14 : 12:11:03
|
| use master go sp_dboption <DBNAME>, "trunc. log on chkpt.",true go use <DBNAME> go checkpoint go |
 |
|
|
tkizer
Almighty SQL Goddess
38200 Posts |
Posted - 2003-11-14 : 13:03:09
|
| Why not just use SIMPLE database recovery model?Tara |
 |
|
|
|
|
|