Search code examples
oracle-databaseprivilegessql-grant

Grant privilege in oracle 12c by manual


I use SQL developer on Oracle 12c. I want to create a grant like

 GRANT  SELECT,  INSERT,  UPDATE,  DELETE ON  schema.books TO books_admin;

By manual. I use SQL developer Version 4.1.4.21 . How can I do that?


Solution

  • Using SQL Developer, this can be achieved with below steps ;

    1. Right click on Table (to which access needs to be granted) --> Privileges --> Grant [as shown in below diagram].

    enter image description here

    1. Then assign the user & permissions to be granted [as shown in below diagram].

    enter image description here

    1. Click Apply.