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, 3395🔥, 0💬
Popular Posts:
What Are the Basic Features of a Trigger in SQL Server? Since a SQL Server trigger is a really an ev...
How To Drop an Index in Oracle? If you don't need an existing index any more, you should delete it w...
How To Install Oracle Database 10g XE in Oracle? To install 10g universal edition, double click, Ora...
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...