1.conn b/b@mis
create table aaa as select * from a.aaa;
2.copy from a/a to b/b create table aaa using select * from aaa;

解决方案 »

  1.   

    create table aaa as select * from a.aaa;
      

  2.   


    1.进入用户A模式 grant select on aaa to b 
      进入用户B模式 create table aaa as(select * from a.aaa)
    或;
    2.exp a/password tables=(aaa) file=c:\data1.dmp
      imp b/password tables=(aaa) IGNORE=Y fromuser=a touser=b file=c:\data1.dmp
    第二种方法中若A有DBA 权限则B 为了倒入也必须有DBA权限,即 A的权限应是B的子集
      

  3.   

    最简单的.
    create table aaa as select * from a.aaa;
    或者,
    copy  from .. to ..
      

  4.   

    create table aaa as select * from a.aaa;
    copy  from .. to ..exp 
    imp
      

  5.   

    我与xmhsuc(枭茗) 相同
    帮你往前踢一脚,看有没有更好的方法。
      

  6.   

    copy from user/pw@db1
    to user2/pw2@db2
    insert table tbname
    using select * from a;
      

  7.   

    copy from user/pw@db1
    to user2/pw2@db2
    insert table tbname
    using select * from a;
      

  8.   

    copy from user/pw@db1
    to user2/pw2@db2
    insert table tbname
    using select * from a;
      

  9.   

    bzszp(SongZip)  我试过了你的sql语句,执行是没有问题的,但是结果没有出来,就是没把user下的a表拷到user2下,why?