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, 3254🔥, 0💬
Popular Posts:
How To Count Rows with the COUNT(*) Function in SQL Server? If you want to count the number of rows,...
Where to find answers to frequently asked questions I am new to Oracle database. Here is a list of f...
How AdventureWorksLT tables are related in SQL Server? There are 12 user tables defined in Adventure...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
What Happens to Your Transactions When ERROR 1213 Occurred in MySQL? If your transaction receives th...