⑴ 如何在oracle中導入dmp資料庫文件
在Oracle資料庫中,使用Import(imp)工具導入DMP文件是一項常用操作。這里詳細介紹幾種導入方法:
1. 獲取幫助信息,執行命令:imp help=y。這將顯示所有可用的參數和選項。
2. 導入整個資料庫,命令如下:imp system/manager file=bible_db log=dible_db full=y ignore=y。此操作將完整導入指定文件中的資料庫,忽略任何錯誤。
3. 導入特定用戶的所有對象,如用戶seapark,命令為:imp system/manager file=seapark log=seapark fromuser=seapark。若要導入一組用戶,如seapark, amy, amyc, harold,命令為:imp system/manager file=seapark log=seapark fromuser=(seapark, amy, amyc, harold)。
4. 將一個用戶的數據導入到另一個用戶中,例如,將seapark的數據導入到seapark_中,命令如下:imp system/manager file=tank log=tank fromuser=seapark touser=seapark_。若要同時導入多個用戶,如seapark和amy,命令為:imp system/manager file=tank log=tank fromuser=(seapark, amy) touser=(seapark1, amy1)。
5. 導入特定表,如表a和b,命令為:imp system/manager file=tank log=tank fromuser=seapark TABLES=(a,b)。
6. 從多個文件導入數據,例如,文件paycheck_1到paycheck_4,命令如下: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。參數文件內容如下:
#Import the sample tables used for the Oracle8i Database Administrator's Bible.
fromuser=seapark touser=seapark_ file=seapark log=seapark_import
8. 增量導入數據,命令為:imp system./manager inctype= RECTORE FULL=Y FILE=A。此操作將僅導入自上次導入以來更改的數據。