If I want to disable transaction log is
use master
go
sp_dboption SBP, 'trunc',true
go
use SBP
go
checkpoint
go
and I want to enable again
use master
go
sp_dboption SBP, 'trunc',false
go
use SBP
go
checkpoint
go
The checkpoint command is mandatory to change the mode of transaction log?
Regards