oracle資料庫備份語句

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

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資料庫資料修改語句,Oracle資料庫資料修改語句

墨汁諾 把查出來的資料做乙個表g,a.rsc status cd as rsc status 使用update g set g.rsc status 43 使用b表資料更新a表,那麼where條件是什麼,也就是說,更新a表中哪些資料,用b表中的哪些資料更新,二者的關係是什麼。從你的語句中我看不出b表...

oracle資料庫,oracle資料庫價格

oracle是一種適用於大型 中型和微型計算機的關聯式資料庫管理系統,它使用sql structured guery language 作為它的資料庫語言。sql主要包括資料定義 資料操縱 包括查詢 和資料控制等三方面功能。sql是一種非過程化程度很高的語言,使用者只需說明 幹什麼 而無需具體說明 怎麼...

Oracle資料庫課程,用SQL語句

create table student id number 10 name varchar2 20 not null,age number 2 not null,primary key id insert into student id,name,age values 1,張三 20 commit...