oracle資料庫備份語句

時間 2021-10-14 22:16:56

1樓:匿名使用者

exp 畢竟也需要連線到資料庫,也就是需要提供使用者名稱,密碼,所以你說的資料庫模式匯出,是無法正常實現的。但是使用dba使用者登陸,可以實現匯出整個資料庫的類似功能。

資料庫模式:

exp system/passwd@oracle full = y file = 'db081222.dmp' log = 'db081222.log'

使用者模式:

exp user/passwd@oracle file = 'user081222.dmp' log = 'user081222.log'

表模式:

exp user/passwd@oracle file = 'user081222.dmp' log = 'user081222.log' tables = ('table_1','table_2')

imp 語句只要把上面3個語句中的 'exp' 換成 'imp' 就行了

如果還有不明白的,可以在命令列中輸入exp -help 或者 imp -help 檢視幫助!

2樓:匿名使用者

export 有四種備份方式:完全,表空間,使用者,表

exp [user]/[passwd]@[servername] file=檔案路徑 log=日誌路徑

例如:exp system/manager@10g file=d:\expdata.dmp log=d:\expdata.log full=y

oracle資料庫語句問題

就是當你在多表連線查詢時方便你區分,就是乙個標識,和效率無關!select from g2 contract materials gm where 5003094 vsselect from g2 contract materials where contract id 5003094 乙個用了 g...

sql資料庫和oracle資料庫哪個好

兄弟,聽我的。肯定學習oracle。原因 1 oracle是商用的最廣泛的關係型資料庫管理系統,廣泛應用於銀行 電信 電力 社保等各個領域。特別是對於unix和linux平臺,sqlserver怎麼用啊?我想你學習,肯定為了將來應用,或者工作,你的簡歷裡面寫oracle和sqlserver完全是不一...

oracle資料庫主鍵設定為id插入語句時如何自

牛氣的江湖先行者 使用oracle資料庫中的關鍵字sequence來實現目的。建立myseq create sequence myseqstart with 1 increment by 2 maxvalue 40 minvalue 1 cycle 建立使用者表 create table user ...