/* ** Replace 'mydb' below with the name of your database. ** ** Add or delete 'load transaction ...' lines as needed. ** ** Replace these example backup file names with those needing to be restored. ** ** You can list the available files using the bplist command. E.g. ** /usr/openv/netbackup/bin/bplist -C sourceclient -t 7 -R / ** /SYBASE.mydb.T.0.14142.22-12-2018.20:45:00 ** /SYBASE.mydb.T.0.44532.21-12-2018.22:01:00 ** /SYBASE.mydb.D.0.24312.20-12-2018.23:05:25 ** ** Be sure to omit the leading slash (/) from the load command. ** ** For redirected restore of an image backed up by a different client, ** append the client name under which the images were backed up. I.e. ** load ... "sybackup::... -CLIENT sourceclient" ** ** If restoring from a different NetBackup domain, ** append the hostname to reach the other master server. I.e. ** load ... "sybackup::... -SERV othermaster -CLIENT sourceclient" */ load database mydb from "sybackup::SYBASE.mydb.D.0.24312.20-12-2018.23:05:25" go load transaction mydb from "sybackup::SYBASE.mydb.T.0.44532.21-12-2018.22:01:00" go load transaction mydb from "sybackup::SYBASE.mydb.T.0.14142.22-12-2018.20:45:00" go online database mydb go