I think the equivalent would probably be setting the database option "truncate log on ckpt" using sp_dboption
sp_dboption <dbname>, "trunc.", true
go
You can check whether this option is on using sp_helpdb.
I think the equivalent would probably be setting the database option "truncate log on ckpt" using sp_dboption
sp_dboption <dbname>, "trunc.", true
go
You can check whether this option is on using sp_helpdb.