Collections:
Grant CREATE SESSION Privilege in Oracle
How To Grant CREATE SESSION Privilege to a User in Oracle?
✍: FYIcenter.com
If you want give a user the CREATE SESSION privilege, you can use the GRANT command. The following tutorial exercise shows you how to grant DEV the privilege to connect to the server:
>.\bin\sqlplus /nolog SQL> connect SYSTEM/fyicenter SQL> GRANT CREATE SESSION TO dev; Grant succeeded. SQL> disconnect SQL> CONNECT DEV/developer Connected.
⇒ Revoke CREATE SESSION Privilege in Oracle
⇐ Privilege Needed to Connect to Oracle Server in Oracle
2019-07-09, 3074🔥, 0💬
Popular Posts:
What Are the Differences between DATE and TIMESTAMP in Oracle? The main differences between DATE and...
How To Select All Columns of All Rows from a Table in Oracle? The simplest query statement is the on...
How Run SQL*Plus Commands That Are Stored in a Local File in Oracle? If you have a group of commands...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
How To Escape Special Characters in SQL statements in MySQL? There are a number of special character...