Loading Consent Dialog
Password Files   «Prev 

Connecting as internal using Password

1) In this example, we are connecting to the default database, and allowing Oracle to prompt us for the password.
SVRMGR > connect internal
Password:
Connected.
SVRMGR>

2) In this example, we are connecting to a database across the network identified by the Oracle Network Service named coin, but still allowing Oracle to prompt us for the password.
SVRMGR > connect internal@coin
Password:
Connected.
SVRMGR>

3) In this example, we are connecting to the default database, and supplying the internal password as part of the CONNECT command.
SVRMGR > connect internal/herman
Connected.
SVRMGR>

4) In this example, we put it all together, and supply both an Oracle Network service name and the internal password as part of the CONNECT command
SVRMGR> connect internal/herman@coin
Connected.
SVRMGR>