oracle建立查询用户
Posted 祥翔祥
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了oracle建立查询用户相关的知识,希望对你有一定的参考价值。
使用dba用户授权:
-
create user userName identified by password;
-
grant connect to userName;
-
Grant Delete, Insert, Update, Select On schema1.table1 To schema2;
使用建立的用户登录后执行查询:
select * from schema1.table1 ;
以上是关于oracle建立查询用户的主要内容,如果未能解决你的问题,请参考以下文章