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. 將乙個使用者所屬的資料匯入另乙個使用者
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常用語句備份
1 修改表的儲存表空間語句 解決方法1 alter table move tablespace move過table以後索引會丟失,所以還重建索引,先查詢失效的索引 select index name from user indexes where status unusable alter ind...
oracle同義詞語句備份
建立同義詞 create synonym t system userdepartment for xtzl.t system userdepartment 查詢同義詞 select from sys.all synonyms where synonym name t system post 查詢當前...
Oracle 常用語句備份
1 oracle 11g 使用者名稱和密碼預設區分大小寫,可更改alter system set sec case sensitive logon false 設定改為不區分大小寫。2 授權建立檢視 grant create view to 使用者 檢視使用者和預設表空間的關係 select use...