
Discover essential methods to manage Sybase transaction logs efficiently. Learn how to enable and disable Sybase Transaction Log.
In my scenario SBP is DB SID.
If I want to disable transaction log: –
use master
go
sp_dboption SBP, 'trunc',true
gouse SBP
go
checkpoint
goAnd I want to enable again: –
use master
go
sp_dboption SBP, 'trunc',false
gouse SBP
go
checkpoint
goThe checkpoint command is mandatory to change the mode of transaction log?