Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to grant "grant create session" privilege?

Tags:

How to grant the privilege of giving the privilege of creating a session to a user or role in Oracle?

like image 671
Thomas Carlton Avatar asked Oct 29 '13 05:10

Thomas Carlton


People also ask

How do I grant a user privilege?

To GRANT ALL privileges to a user , allowing that user full control over a specific database , use the following syntax: mysql> GRANT ALL PRIVILEGES ON database_name. * TO 'username'@'localhost';

How do I give grant permissions in SQL Developer?

column list. Use the ALL PRIVILEGES privilege type to grant all of the privileges to the user or role for the specified table. You can also grant one or more table privileges by specifying a privilege-list. Use the DELETE privilege type to grant permission to delete rows from the specified table.


1 Answers

You would use the WITH ADMIN OPTION option in the GRANT statement

GRANT CREATE SESSION TO <<username>> WITH ADMIN OPTION 
like image 188
Justin Cave Avatar answered Sep 29 '22 20:09

Justin Cave