Grant CREATE SESSION Privilege in Oracle

Q

How To Grant CREATE SESSION Privilege to a User in Oracle?

✍: FYIcenter.com

A

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

Managing Oracle User Accounts, Schema and Privileges

⇑⇑ Oracle Database Tutorials

2019-07-09, 1575🔥, 0💬