怎么在linux里连接数据库导入dmp文件
发布网友
发布时间:2022-04-25 07:46
我来回答
共1个回答
热心网友
时间:2022-05-05 22:31
当然,用工具导出是最方便的,要是直接用黑窗口导出也是很方便的。
这个导出的话,你可以具体的上网搜搜,本地的就直接导出就行:
数据导出:
1 将数据库TEST完全导出,用户名system 密码manager 导出到D:\chu.dmp中
exp system/manager@TEST file=d:\chu.dmp full=y
2 将数据库中system用户与sys用户的表导出
exp system/manager@TEST file=d:\chu.dmp owner=(system,sys)
3 将数据库中的表table1 、table2导出
exp system/manager@TEST file=d:\chu.dmp tables=(table1,table2)
4 将数据库中的表table1中的字段filed1以"00"打头的数据导出
exp system/manager@TEST file=d:\chu.dmp tables=(table1) query=\" where filed1 like '00%'\"
如果是远程的话也是可以的:
C:\Documents and Settings\Administrator>exp tmrpt/tmrpt@22.11.103.12:1521/bocReport file=c:\yuCheng\event_log_realtime.d
mp tables=(event_log_realtime);