国产成人毛片视频|星空传媒久草视频|欧美激情草久视频|久久久久女女|久操超碰在线播放|亚洲强奸一区二区|五月天丁香社区在线|色婷婷成人丁香网|午夜欧美6666|纯肉无码91视频

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

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

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

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

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

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

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

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

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

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

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

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