专业编程教程与实战项目分享平台

网站首页 > 技术文章 正文

Oracle创建可读用户 在oracle中创建用户

ins518 2024-11-07 12:08:35 技术文章 12 ℃ 0 评论


--创建用户testread

  1. create user testread identified by 123456;

--授权

  1. grant connect to testread;
  2. grant create synonym to testread;
  3. grant create session to testread;

--赋权

  1. grant select on user1.table1 to testread;
  2. create or replace synonym testread.table1 for user1.table1;

本文暂时没有评论,来添加一个吧(●'◡'●)

欢迎 发表评论:

最近发表
标签列表