SQL>conn system/password
1.首先授权用户可以选SYSTEM.LX1表的权限
SQL>grant select to scott on system.lx1;
or 
SQL>grant all to scott on system.lx1;
2.以用户scott连接数据库并创建表lx1
SQL>conn scott/password;
SQL>create table scott.lx1 as select * from system.lx1;
SQL>select * from scott.lx1;
如果成功,再执行下面语句:
SQL>conn system/password
SQL>drop table system.lx1