connect system/manager
create user uname identified by upass;
grant connect to uname;--连接权限
grant resource to uname;--开发权限pl/sql developer工具

解决方案 »

  1.   

    2:
    exp
    imp
    or
    create database link db_link....
    创建表
    insert into......select ....from....@db_link
      

  2.   

    1.在第三方工具里还是一样的要执行命令. 楼上的四句命令就可以了.2.建一个db link ,然后执行一个建表,通过db link来查询插入数据.
      

  3.   

    如何单独导出一个或多个表
    命令详解: D:\>exp 用户/密码 tables=表
    D:\>exp 用户/密码 tables=(表1,…,表2)
    D:\>exp system/manager tables=(用户.表)
    D:\>exp system/manager tables=(用户1.表1,用户2.表2)如何单独导出一个或多个用户
    D:\>exp scott/tiger file=导出文件
    D:\>exp system/manager owner=(用户1,用户2,…,用户n) file=导出文件
      

  4.   

    1.用户:创建用户
    create user zhao
    identified by password
    default tablespace accounting_tbs
    quota 100M/unlimited on accounting_tbs
    quota 500k on indx
    temporary tablespace temptbs
    profile accounting_usersgrant connect to zhao锁定/解锁用户
    alter user zhao account lock/unlock修改用户
    alter user zhao
    identified by aaaaaa
    default tablespace users删除用户
    drop user zhao cascade