SQLPLUS下
create user qq identified by password;
grant select,dba to qq;dos提示符下
imp qq/password file=路径\expdat.dmp full=y

解决方案 »

  1.   

    出现错误...
    是什么问题?
    -----------------------------
    用户已创建grant select,dba to qq
          *
    ERROR 位于第 1 行:
    ORA-01919: 角色'SELECT'不存在
    ------------------------------------
      

  2.   

    明白了,是缺少select角色,是不是就是ORACLE 9i里的SELECT_CATALOG_ROLE?
      

  3.   

    grant connect,resource,dba to qq;即可。
    有关select 权限的操作为:
    grant select any table to qq;
    但是我认为在EXP,IMP过程中不需要select权限。
      

  4.   

    sorry,
    不是selectgrant connect,dba to qq;
      

  5.   

    grant resource to qq;
    就可以了
      

  6.   

    根本不用建用户,
    用imp system/manager@服务名 回车。
    然后输入你要导的路径。就行。
    但qq 的用户必须是用system用户导出的。
      

  7.   

    grant dba to qq 就可以了,不用加connect
      

  8.   

    不用动不动就给DBA吧。
    create user qq identified by yourpassword;
    grant resource to qq;
    grant create session to qq;
    grant imp_full_database to qq;
    ===============
    imp qq/yourpassword@服务器 file=倒出的文件名(如d:\expdat.dmp) fromuser=qq touser=qq buffer=409600 log=imp.log