Oracle : exp and imp . 
see this page : http://www.oradb.net/expimp.htm . 

解决方案 »

  1.   

    exp 或 imp者说 格式为:
    exp userid = 用户名/口令@主机字符串 file = 文件名与路径 full = y;
    imp userid = 用户名/口令@主机字符串 file = 文件名与路径 full = y;
      

  2.   

    EXP:
    You can let Export prompt you for parameters by entering the EXP
    command followed by your username/password:     Example: EXP SCOTT/TIGEROr, you can control how Export runs by entering the EXP command followed
    by various arguments. To specify parameters, you use keywords:     Format:  EXP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
         Example: EXP SCOTT/TIGER GRANTS=Y TABLES=(EMP,DEPT,MGR)Keyword  Description (Default)        Keyword      Description (Default)
    --------------------------------------------------------------------------
    USERID   username/password            FULL         export entire file (N)
    BUFFER   size of data buffer          OWNER        list of owner usernames
    FILE     output file (EXPDAT.DMP)     TABLES       list of table names
    COMPRESS import into one extent (Y)   RECORDLENGTH length of IO record
    GRANTS   export grants (Y)            INCTYPE      incremental export type
    INDEXES  export indexes (Y)           RECORD       track incr. export (Y)
    ROWS     export data rows (Y)         PARFILE      parameter filename
    CONSTRAINTS export constraints (Y)    CONSISTENT   cross-table consistency
    LOG      log file of screen output    STATISTICS   analyze objects (ESTIMATE)
    DIRECT   direct path (N)IMP:
         Format:  IMP KEYWORD=value or KEYWORD=(value1,value2,...,valueN)
         Example: IMP SCOTT/TIGER IGNORE=Y TABLES=(EMP,DEPT) FULL=NKeyword  Description (Default)       Keyword      Description (Default)
    --------------------------------------------------------------------------
    USERID   username/password           FULL         import entire file (N)
    BUFFER   size of data buffer         FROMUSER     list of owner usernames
    FILE     output file (EXPDAT.DMP)    TOUSER       list of usernames
    SHOW     just list file contents (N) TABLES       list of table names
    IGNORE   ignore create errors (N)    RECORDLENGTH length of IO record
    GRANTS   import grants (Y)           INCTYPE      incremental import type
    INDEXES  import indexes (Y)          COMMIT       commit array insert (N)
    ROWS     import data rows (Y)        PARFILE      parameter filename
    LOG      log file of screen output
    DESTROY  overwrite tablespace data file (N)
    INDEXFILE write table/index info to specified file
    CHARSET  character set of export file (NLS_LANG)