Collections:
Privilege Needed to Connect to Oracle Server in Oracle
What Privilege Is Needed for a User to Connect to Oracle Server in Oracle?
✍: FYIcenter.com
Oracle deny connection to users who has no CREATE SESSION privilege. Try the following tutorial exercise, you will find out how Oracle denies connection:
>.\bin\sqlplus /nolog SQL> connect SYSTEM/fyicenter SQL> CREATE USER DEV IDENTIFIED BY developer ACCOUNT UNLOCK; User created. SQL> disconnect SQL> CONNECT DEV/developer ORA-01045: user DEV lacks CREATE SESSION privilege; logon denied
Oracle error message is pretty clear.
⇒ Grant CREATE SESSION Privilege in Oracle
⇐ Delete a User Account in Oracle
2019-07-09, 2945🔥, 0💬
Popular Posts:
How To Create a Dynamic Cursor with the DYNAMIC Option in SQL Server Transact-SQL? If the underlying...
How To Convert Numeric Values to Character Strings in MySQL? You can convert numeric values to chara...
What Happens to the Current Transaction If a START TRANSACTION Is Executed in MySQL? If you are in a...
What Are Bitwise Operations in SQL Server Transact-SQL? Bitwise operations are binary operations per...
How To Round a Numeric Value To a Specific Precision in SQL Server Transact-SQL? Sometimes you need ...