第一步:创建用户

create user username identified by password;

 


第二步:给用户赋值接触锁定(仅仅赋予会话权限)

grant create session to xxx;

 


第三步(登录所要访问表的用户(xxx),执行如下语句,并把结果保存为sql文件):

select 'GRANT ALL ON '||table_name||' to username;' from user_tables;

 



相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-10-18
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2021-11-04
  • 2021-07-01
  • 2021-10-07
  • 2022-02-17
相关资源
相似解决方案