数据库实例位oraInstance,用户user,密码password,导出三张表
table1,table2,table3到d:\data目录下面:expdata.dmp:
exp user/password@oraInstance file=d:\data\expdata.dmp tables=(table1,table2,table3);
将上述文件恢复的语句:
exp user/password@oraInstance full=y file=d:\data\expdata.dmp;
如果要将备份文件中的所有表恢复,需要加上full=y,如果只需要恢复table1
exp user/password@oraInstance file=d:\data\expdata.dmp table=table1;
执行环境:
在sqlplus或者dos命令中执行,dos中可以执行是由于oracle安装文件中\bin目录被
设置为了全局路径,该目录下的exp.exe和imp.exe文件被用来执行导入导出.
将数据库ora完全导出,用户名system,密码manager,导出d:\expdata.dmp
exp system/mamager@ora file=d:\expdata.dmp full=y
将某个实例下的两个用户的表导出
exp system/mamager@ora file=d:\expdata.dmp owener=(system,sys)
将某个实例下的某些表导出
exp system/manager@ora file=d:\expdata.dmp tables=(table1,table2)
对于压缩,既用winzip把dmp文件可以很好的压缩也可以在上面命令后面加上 compress=y 来实现
数据的导入
1 将D:\expdata.dmp 中的数据导入ora数据库中。
imp system/manager@ora file=d:\expdata.dmp
imp system/manager@ora full=y file= d:\expdata.dmp ignore=y
上面可能有点问题,因为有的表已经存在,然后它就报错,对该表就不进行导入
在后面加上ignore=y就可以了
2 将d:\expdata.dmp中的表table1 导入
imp system/manager@ora file=d:\expdata.dmp tables=(table1)
----------------------------------------------------------------------------------------
plsqldeveloper
下停止执行: 闪电按钮, shift+esc;
切换打开的文件:ctrl+tab
oracle 查看数据表的主键名称和主键字段:
select a.constraint_name, a.column_name
from user_cons_columns a, user_constraints b
where a.constraint_name = b.constraint_name
and b.constraint_type = 'P' and a.table_name = 'TABLENAME'
字符组匹配固定号段查询:
SELECT count(1) INTO v_ls
FROM t_country_phone t
WHERE t.beginphonenumber BETWEEN substr(calleeNumber,1,6) AND calleeNumber
AND t.endphonenumber >= calleeNumber;
oracle导数据
最新推荐文章于 2024-07-31 22:38:39 发布