In Sybase Central, right click on the database, you should get an option for Backup/Restore/Dump. (Don't have it in front of me, can't remember the exact menu option.)
You should know that both "dump tran ... with truncate_only" and "... with no_log" will disable all regular transaction (incremental) dumps in a database until a full dump database is done. This can be very important in production databases!
Further, "no_log" has some risks associated with it. You should regard it as last resort, only for when all other versions of "dump tran" fail.
Main Topics
Browse All Topics





by: VenenoPosted on 2006-11-10 at 07:59:24ID: 17915151
I don't know if there is such a tool on Sybase Central. But try to run this command while logged to Sybase or on your Database Manager software:
dump tran [database_name] with truncate_only
or
dump tran [database_name] with no_log