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, 2232🔥, 0💬
Popular Posts:
What Happens If the UPDATE Subquery Returns Multiple Rows in MySQL? If a subquery is used in a UPDAT...
How To Replace Given Values with NULL using NULLIF() in SQL Server Transact-SQL? Sometime you want t...
How to run Queries with SQL Server Management Studio Express in SQL Server? 1. Launch and connect SQ...
What are single-byte character string data types supported in SQL Server Transact-SQL? Single-byte c...
How To Drop a Stored Procedure in Oracle? If there is an existing stored procedure and you don't wan...