Collections:
Use SYS Account to Connect to the Server in Oracle
How To Connect to the Server with User Account: SYS in Oracle?
✍: FYIcenter.com
SYS is a very special user account. It has been associated with the highest privilege call SYSDBA. Normally, you should not connect to the server with SYS. But if you want to use it, you need to use a special connect command:
>cd (OracleXE home directory) >.\bin\sqlplus /nolog SQL> connect SYS/fyicenter AS SYSDBA Connected. SQL> quit
Note that the "/nolog" option is used to start SQL*Plus without login immediately. A special form of the "connect" command is used to include the user name, password, and the privilege in the same line.
You can not log in with SYS without SYSDBA privilege.
⇒ Use Windows User to Connect to the Server in Oracle
⇐ Built-in Internal User Accounts in Oracle
2019-07-21, 2986🔥, 0💬
Popular Posts:
How to download and install Microsoft .NET Framework Version 2.0 in SQL Server? .NET Framework Versi...
What Is a Parameter File in Oracle? A parameter file is a file that contains a list of initializatio...
What Are Date and Time Functions in MySQL? MySQL offers a number of functions for date and time valu...
How To Look at the Current SQL*Plus System Settings in Oracle? If you want to see the current values...
What Happens to Your Transactions When ERROR 1205 Occurred in MySQL? If your transaction receives th...