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, 2365🔥, 0💬
Popular Posts:
How To Set Up SQL*Plus Output Format in Oracle? If you want to practice SQL statements with SQL*Plus...
What Is Program Global Area (PGA) in Oracle? A Program Global Area (PGA) is a memory buffer that is ...
Where to find answers to frequently asked questions on Transaction Management: Commit or Rollback in...
How to set the current database in SQL Server? Once you are connected to the SQL Server, you should ...
Where to find MySQL database server tutorials? Here is a collection of tutorials, tips and FAQs for ...