Can someone advise me on how to create a user in Oracle 11g and only grant that user the ability only to execute one particular stored procedure and the tables in that proce
Follow the below steps for creating a user in Oracle.
--Connect as System user
CONNECT /@;
--Create user query
CREATE USER IDENTIFIED BY ;
--Provide roles
GRANT CONNECT,RESOURCE,DBA TO ;
--Provide privileges
GRANT CREATE SESSION, GRANT ANY PRIVILEGE TO ;
GRANT UNLIMITED TABLESPACE TO ;
--Provide access to tables.
GRANT SELECT,UPDATE,INSERT ON TO ;
- 热议问题