把Oracle 導入實用程序 (Import utility)中允許Oracle 從相關的數據庫中提取一些數據,而且還要將數據放到相關文件中。以下的文章就是以 imp 的格式 ,來演示imp 常用的方法。以下就是文章的具體內容的介紹。
1. 獲取幫助
imp help=y
2. 導入一個完整數據庫
imp system/manager file=bible_db log=dible_db full=y ignore=y
3. 導入一個或一組指定用戶所屬的全部表、索引和其他對象
imp system/manager file=seapark log=seapark fromuser=seapark imp
system/manager file=seapark log=seapark fromuser=(seapark,amy,amyc,harold)
4.在Oracle 導入實用程序 (Import utility) 允許從數據庫提取數據中將一個用戶所屬的數據導入另一個用戶
imp system/manager file=tank log=tank fromuser=seapark touser=seapark_copy
imp system/manager file=tank log=tank fromuser=(seapark,amy)
touser=(seapark1, amy1)
5. 導入一個表
imp system/manager file=tank log=tank fromuser=seapark TABLES=(a,b)
6. 從多個文件導入
imp system/manager file=(paycheck_1,paycheck_2,paycheck_3,paycheck_4)
log=paycheck, filesize=1G full=y
7. 使用參數文件
imp system/manager parfile=bible_tables.par
bible_tables.par 參數文件:
#Import the sample tables used for the Oracle8i Database Administrator's
Bible. fromuser=seapark touser=seapark_copy file=seapark log=seapark_import
8. 在增量導入
imp system./manager inctype= RECTORE FULL=Y FILE=A
Oracle imp/exp
C:Documents and Settingsadministrator>exp help=y
以上就是對Oracle 導入實用程序 (Import utility) 允許從數據庫提取數據,並且將數據寫入操作系統文件相關的內容的介紹,望你會有所收獲。