Skip to Main Content

Oracle Database Discussions

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Database User Access Check

Noname123Nov 18 2021

I created one user. This user has only "create session" privilege.

However, this user able to update a table.

Case:
SQL> CREATE USER <USERNAME> IDENTIFIED BY <PASSWORD>;
SQL> GRANT CREATE SESSION TO <USERNAME>

Login to new user :
SQL> SELECT * FROM <TABLE_NAME> WHERE <COLUMNID>='325';
1 row returned.

SQL> UPDATE <TABLENAME> SET <COLUMNNAME>='XYZ' where <COLUMNID>='325';
1 row updated.

image.png
What could be the cause here? How to approach this.

Comments
Post Details
Added on Nov 18 2021
3 comments
245 views