Collections:
Connect to Oracle Server as SYSDBA in Oracle
How To Connect the Oracle Server as SYSDBA in Oracle?
✍: FYIcenter.com
This is Step 4. The best way to connect to the Oracle server as an administrator is to use SQL*Plus. You need to run SQL*Plus with /nolog option and use the CONNECT with blank user name, blank password and AS SYSDBA option. Here is a sample session:
>cd $ORACLE_HOME >.\bin\sqlplus /nolog SQL> CONNECT / AS SYSDBA Connected.
⇒ Create a Server Parameter File in Oracle
⇐ Create an Initialization Parameter File in Oracle
2019-04-03, 3574🔥, 0💬
Popular Posts:
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...
How To Convert Binary Strings into Integers in SQL Server Transact-SQL? Binary strings and integers ...
What Is an Oracle Instance in Oracle? Every running Oracle database is associated with an Oracle ins...
How To List All Stored Procedures in the Current Database in SQL Server Transact-SQL? If you want to...
Where to find reference information and tutorials on MySQL database functions? I want to know how to...