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, 3187🔥, 0💬
Popular Posts:
How Many Groups of Data Types in MySQL? MySQL support 3 groups of data types as listed below: String...
What Are the Differences between BINARY and VARBINARY in MySQL? Both BINARY and VARBINARY are both b...
How To Get the Definition of a View Out of the SQL Server in SQL Server? If you want get the definit...
What are binary literals supported in SQL Server Transact-SQL? Binary literals in Transact-SQL are s...
How To Start the Command-Line SQL*Plus in Oracle? If you Oracle server or client installed on your w...