Differences between revisions 2 and 4 (spanning 2 versions)
Revision 2 as of 2016-03-06 09:42:22
Size: 534
Editor: localhost
Comment:
Revision 4 as of 2016-06-22 16:23:33
Size: 1171
Editor: localhost
Comment:
Deletions are marked like this. Additions are marked like this.
Line 11: Line 11:

== NBU restore script ==
https://www.veritas.com/support/en_US/article.HOWTO64200
 1. Make sure you have installed Oracle with the same user as used on the original source client machine
 2. Install NetBackup Client and Oracle agent
 3. Patch if needed
 4. Touch the file on the master server:
 /usr/openv/netbackup/db/altnames/No.Restrictions

{{{
RUN {
  ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
  ALLOCATE CHANNEL ch01 TYPE 'SBT_TAPE';
  SEND 'NB_ORA_SERV=<master server>, NB_ORA_CLIENT=<Oracle source client name>’;
  RESTORE DATABASE;
  RECOVER DATABASE;
  RELEASE CHANNEL ch00;
  RELEASE CHANNEL ch01;
}
}}}

Step-by-step configuration of NetBackup for Microsoft SQL Server differential backups

https://www.veritas.com/support/en_US/article.000033118

Step-by-step procedure for using NetBackup to restore a Microsoft SQL Full Backup using a MOVE script

https://www.veritas.com/support/en_US/article.000033126

How to configure a NetBackup policy to protect Microsoft SQL databases?

http://www.settlersoman.com/how-to-configure-a-netbackup-policy-to-protect-microsoft-sql-databases/

NBU restore script

https://www.veritas.com/support/en_US/article.HOWTO64200

  1. Make sure you have installed Oracle with the same user as used on the original source client machine
  2. Install NetBackup Client and Oracle agent

  3. Patch if needed
  4. Touch the file on the master server: /usr/openv/netbackup/db/altnames/No.Restrictions

RUN {
  ALLOCATE CHANNEL ch00 TYPE 'SBT_TAPE';
  ALLOCATE CHANNEL ch01 TYPE 'SBT_TAPE';
  SEND 'NB_ORA_SERV=<master server>, NB_ORA_CLIENT=<Oracle source client name>’;
  RESTORE DATABASE;
  RECOVER DATABASE;
  RELEASE CHANNEL ch00;
  RELEASE CHANNEL ch01;
} 

désert/Symantec/NBU (last edited 2016-07-04 02:56:21 by merlyn)