如system用户要将scott中的emp表倒入其中,按如下方法:

  1.登录scott用户

  2.给system用户赋予查询emp标的权限:

grant select on emp to system;

  3.登录system用户

  4.执行以下语句:

create table emp as select * from scott.emp;

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-08-15
  • 2021-11-12
  • 2022-12-23
  • 2021-07-12
  • 2021-07-01
猜你喜欢
  • 2021-09-01
  • 2021-06-09
  • 2021-11-18
  • 2021-12-05
  • 2022-12-23
  • 2021-08-23
相关资源
相似解决方案