Hello Rajesh,
Goto Database SMR first.
There you can see "Backup and Recovery" and "Jobs" tabs.
In Backup and Recovery you can see database dump history.
In Jobs you can use "Add" button to schedule an action.
In action selection there is SQL Script. For SQL script you can write "dump database SMR using config = 'SMRDB'" to schedule your DB backup and write dump transaction SMR using config = 'SMRLOG' for log backup.
(SMRDB and SMRLOG configurations must be prepared like the ones in note 1588316 - SYB: Configure automatic database and log backups)
If you donot want to use configurations you can write below SQL scripts directly for DB and transaction backups.
dump database SMR to 'D:\backup\SMRbck.dmp' with verify = full, compression = 100
go
dump transaction SMR to 'D:\backup\SMRTrns.trn' with compression = 101
go
You can define schedule date, recurrence in Add action wizard.
Regards,
Yuksel AKCINAR