How to create a user in Oracle 11g and grant permissions

后端 未结 9 1497
梦谈多话
梦谈多话 2020-11-29 17:17

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

9条回答
  •  天命终不由人
    2020-11-29 17:48

    First step:

    Connect to a database using System/Password;

    second Step:

    create user username identified by password; (syntax)

    Ex: create user manidb idntified by mypass;

    third Step:

    grant connect,resource to username; (Syntax)

    Ex: grant connect,resource to manidb;

提交回复
热议问题