After rman target /
I am connected to my local database, however I would like to connect to database to which I have credentials - ip, port, username, password (in general to which I can connect via SQLDeveloper). Is it possible through RMAN?
Asked
Active
Viewed 861 times
2 Answers
2
It isn't shown in the documentation, but you can use 'easy connect' syntax:
rman target user@hostname:port/servicename
or if you don't want to be prompted for the password (less secure!):
rman target user/password@hostname:port/servicename

Alex Poole
- 183,384
- 11
- 179
- 318
1
To use rman on a 'remote' server, you need to have oracle client installed (not the instant one, the full one). And then you can configure an entry in the tnsnames.ora file to point to which db you want. You can do, the same if you have a full db install on your system, just add an alias to the remote db.

gsalem
- 1,957
- 1
- 8
- 7