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, 4240🔥, 0💬
Popular Posts:
How To Generate CREATE TABLE Script on an Existing Table in SQL Server? If you want to know how an e...
How To Convert Numeric Values to Integers in SQL Server Transact-SQL? Sometimes you need to round a ...
How To Select All Columns of All Rows from a Table with a SELECT statement in SQL Server? The simple...
Where to find SQL Server Transact-SQL language references? You can find SQL Server Transact-SQL lang...
How To Change the Name of a Database User in SQL Server? If you want to change the name of an existi...