oracle建立查询用户

使用dba用户授权:

  1. create user userName identified by password;

  2.  grant connect to userName;

  3. Grant Delete, Insert, Update, Select On schema1.table1 To schema2;

使用建立的用户登录后执行查询:

      select  *    from    schema1.table1  ;

posted @ 2018-06-06 08:50  祥翔祥  阅读(233)  评论(0)    收藏  举报