Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How Can I Open Database with SQL Plus

Status
Not open for further replies.

rr3news

Programmer
Apr 15, 2003
15
BR
How can I Open Databe using SQL/Plus ?
 
By the term, "Open", I presume you mean "startup". For that, you must be connected to the Oracle instance (via SQL*Plus, for example) with "special" DBA privileges called, "sysdba". Here is a sample session (connecting to a downed database) that illustrates the method:
Code:
sqlplus /nolog
SQL> connect / as sysdba
connected to an idle instance.
SQL> startup
(...Oracle's startup confirmations...)
To be able to "connect / as sysdba", your operating system login must be a member of the Oracle DBA group.

There are differing methods to confirm DBA group membership depending upon whether you are using Windose or *nix. Let us know if you need assistance in determining that issue.

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[I can provide you with low-cost, remote Database Administration services: see our website and contact me via www.dasages.com]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top