Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: RMAN giving error ORA-19550
Harvinder,
Are you running Rman on the database server itself? If so, just set the ORACLE_SID and connect without using the "@qa1" option.
Secondly, you can always set up a second entry in your tnsnames.ora file for the database and make it a dedicated connection. Then use that connection for Rman.
rman target sys/abc_at_qa1_dedicated nocatalog
Qa1_dedicated =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = xxxxxxxx)(PORT = 1521))
)
(CONNECT_DATA =
(SID = qa1)
(SERVER = DEDICATED)
)
)
Good Luck!
Tom
From: oracle-l-bounce_at_freelists.org
[mailto:oracle-l-bounce_at_freelists.org] On Behalf Of Harvinder Singh
Sent: Wednesday, September 13, 2006 5:47 PM
To: ORACLE-L
Subject: RMAN giving error ORA-19550
Hi,
We are using Shared server and when trying to do rman backup getting error:
ORA-19550: cannot use backup/restore functions while using dispatcher
I modified the tnsnames.ora to add the following clause:
(server = dedicated)
But now getting the error:
C:\backup\Personal\OracleScripts>rman target sys/abc_at_qa1 nocatalog
Recovery Manager: Release 10.1.0.3.0 - Production
Copyright (c) 1995, 2004, Oracle. All rights reserved.
RMAN-00571: ===========================================================
RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
RMAN-00571: ===========================================================
RMAN-00554: initialization of internal recovery manager package failed
RMAN-04005: error from target database:
ORA-12154: TNS:could not resolve the connect identifier specified
How to fix this issue?
Thanks
--Harvinder
-- http://www.freelists.org/webpage/oracle-lReceived on Thu Sep 14 2006 - 06:58:17 CDT
![]() |
![]() |