<<Previous Next>>
Oracle - Describe how to revoke CREATE SESSION
privilege from a user - Feb 23, 2010 at 11:00 PM by
Rajmeet Ghai
Describe how to revoke CREATE SESSION privilege from a
user.
Create session privilege allows user to connect to the database.
If it needs to be revoked, following command can be typed:
REVOKE CREATE SESSION FROM user_name
Oracle -
Describe how to revoke CREATE SESSION privilege from a
user - April 10, 2009 at 11:00
AM
Describe how to revoke CREATE SESSION
privilege from a user.
If a CREATE SESSION privilege has been taken from a user, then
REVOKE can be used as follows:
SQL> REVOKE CREATE SESSION FROM dev; Revoke succeeded.
Also read
A system privilege is the right to perform an action on any
schema objects of a particular type.............
Roles in Oracle can be used to grant privileges to a specific
group of users for security. The database manager is usually
responsible for granting privileges to a Role..........
Statement Auditing, Privilege Auditing, and Object
Auditing...........
Statement auditing is the auditing of the powerful system
privileges without regard to specifically named
objects..............
|