imp full database (轉官檔)

lovehewenyu發表於2013-02-20

Using Export and Import to Move a Database Between Platforms

10g官檔:http://docs.oracle.com/cd/B19306_01/server.102/b14215/exp_imp.htm#i1021654

The Export and Import utilities are the only method that Oracle supports for moving an existing Oracle database from one hardware platform. to another. This includes moving between UNIX and NT systems and also moving between two NT systems running on different platforms.

The following steps present a general overview of how to move a database between platforms.

  1. As a DBA user, issue the following SQL query to get the exact name of all tablespaces. You will need this information later in the process.

    SQL> SELECT tablespace_name FROM dba_tablespaces;
    
    
  2. As a DBA user, perform. a full export from the source database, for example:

    > exp system/manager FULL=y FILE=expdat.dmp
    
  3. Move the dump file to the target database server. If you use FTP, be sure to copy it in binary format (by entering binary at the FTP prompt) to avoid file corruption.

  4. Create a database on the target server.

    See Also:

    Oracle Database Administrator's Guide for information about how to create a database
  5. Before importing the dump file, you must first create your tablespaces, using the information obtained in Step 1. Otherwise, the import will create the corresponding datafiles in the same file structure as at the source database, which may not be compatible with the file structure on the target system.

  6. As a DBA user, perform. a full import with the IGNORE parameter enabled:

    > imp system/manager FULL=y IGNORE=y FILE=expdat.dmp
    
    

    Using IGNORE=y instructs Oracle to ignore any creation errors during the import and permit the import to complete.

  7. Perform. a full backup of your new database.

來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/26442936/viewspace-754347/,如需轉載,請註明出處,否則將追究法律責任。

相關文章