成人AV在线无码|婷婷五月激情色,|伊人加勒比二三四区|国产一区激情都市|亚洲AV无码电影|日av韩av无码|天堂在线亚洲Av|无码一区二区影院|成人无码毛片AV|超碰在线看中文字幕

linux導(dǎo)出oracle數(shù)據(jù)庫(kù) oracle數(shù)據(jù)庫(kù)里面,怎么導(dǎo)出dmp文件?

oracle數(shù)據(jù)庫(kù)里面,怎么導(dǎo)出dmp文件?數(shù)據(jù)導(dǎo)出:1 將數(shù)據(jù)庫(kù)TEST完全導(dǎo)出,用戶名system 密碼manager 導(dǎo)出到D:daochu.dmp中exp system/manager@TES

oracle數(shù)據(jù)庫(kù)里面,怎么導(dǎo)出dmp文件?

數(shù)據(jù)導(dǎo)出:

1 將數(shù)據(jù)庫(kù)TEST完全導(dǎo)出,用戶名system 密碼manager 導(dǎo)出到D:daochu.dmp中

exp system/manager@TEST file=d:daochu.dmp full=y

2 將數(shù)據(jù)庫(kù)中system用戶與sys用戶的表導(dǎo)出

exp system/manager@TEST file=d:daochu.dmp owner=(system,sys)

3 將數(shù)據(jù)庫(kù)中的表table1 、table2導(dǎo)出

exp system/manager@TEST file=d:daochu.dmp tables=(table1,table2)

4 將數(shù)據(jù)庫(kù)中的表table1中的字段filed1以"00"打頭的數(shù)據(jù)導(dǎo)出

exp system/manager@TEST file=d:daochu.dmp tables=(table1) query=" where filed1 like "00%""