其实tns无法解析是oracle操作里经常遇到的问题,原因有二:
(1)oracle服务器没有装好(一般不建议重装,因为oracle卸载不完全是没法重装的)
(2)tns没有配置
现在本文给出解决方案:
现在先测试一下tns是否可以ping,成功的界面大致如下
(1)在oracle安装路径的tns配置文件里添加如下代码
# tnsnames.ora network configuration file: d:\oracle\product.2.0\client_1\network\admin\tnsnames.ora # generated by oracle configuration tools. orcl = (description = (address_list = (address = (protocol = tcp)(host = 127.0.0.1)(port = 1521)) ) (connect_data = (service_name = orcl) ) )
其中orcl是我的数据库名称,这个需要根据需要配置
(2)配置tns环境变量
环境变量类似于:
d:\oracle\product\11.2.0\dbhome_1\network\admin
补充:下面给出oracle数据库还原的步骤示例
1、将testdb.bmp放置在dpdump目录,如下路径:
e:\app\administrator\admin\orcl\dpdump
2、创建用户
create user testdb65 identified by “testdb65” default tablespace users temporary tablespace temp;
用户授权
grant connect,dba to testdb65;
3、创建表空间
create tablespace nnc_data01 datafile ‘d:\tablespace\nnc_data01.dbf' size 500m autoextend on next 50m extent management local uniform size 256k ; create tablespace nnc_index01 datafile ‘d:\tablespace\nnc_index01.dbf' size 100m autoextend on next 50m extent management local uniform size 256k ;
4、导入 bgyhr2是来源库
impdp testdb65/testdb65@orcl schemas=testdb65 dumpfile=testdb65.dmp impdp ncjob65/ncjob65@orcl schemas=testdb65 dumpfile=testdb65.dmp
导出 scott 是要导出的库
expdp lfwtrain/a@orcl schemas=当前用户 dumpfile=expdptest.dmp
以上所述是www.887551.com给大家介绍的oracle导dmp出现文件ora-12154: tns: 无法解析指定的连接标识符问题的解决方案,希望对大家有所帮助