如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;