Created
January 9, 2012 13:09
-
-
Save dnaeon/1582870 to your computer and use it in GitHub Desktop.
RMAN restore
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
bash-3.2$ rman @/tmp/restore.rman | |
Recovery Manager: Release 10.2.0.4.0 - Production on Mon Jan 9 14:09:20 2012 | |
Copyright (c) 1982, 2007, Oracle. All rights reserved. | |
RMAN> connect target * | |
2> connect catalog * | |
3> | |
4> connect auxiliary * | |
5> run { | |
6> allocate auxiliary channel ch1 type disk; | |
7> allocate auxiliary channel ch2 type disk; | |
8> allocate auxiliary channel ch3 type disk; | |
9> duplicate target database to PINTAILA until sequence 51405 thread 1 nofilenamecheck; | |
10> } | |
11> | |
connected to target database: PINTAIL (DBID=1577886170) | |
connected to recovery catalog database | |
connected to auxiliary database (not started) | |
RMAN-00571: =========================================================== | |
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS =============== | |
RMAN-00571: =========================================================== | |
RMAN-03002: failure of allocate command at 01/09/2012 14:09:21 | |
RMAN-06403: could not obtain a fully authorized session | |
RMAN-04006: error from auxiliary database: ORA-01034: ORACLE not available | |
ORA-27101: shared memory realm does not exist | |
Linux-x86_64 Error: 2: No such file or directory | |
Recovery Manager complete. | |
bash-3.2$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment