oracle登录12506,【案例】Oracle报错ORA-12560 sqlplus登录数据库时报错12560

news/2024/11/30 20:40:18/

天萃荷净

运维DBA反映,在sqlplus登录数据库时报错ORA-12560: TNS:protocol adapter error,分析原因为sqlplus版本导致

1.sqlplus登录数据库报ORA-12560

C:\Users\oracleplus>sqlplus / as sysdba

SQL*Plus: Release 11.2.0.2.0 Production on Tue Feb 14 23:33:31 2012

Copyright (c) 1982, 2010, Oracle. All rights reserved.

ERROR:

ORA-12560: TNS:protocol adapter error

Enter user-name:

ERROR:

ORA-12560: TNS:protocol adapter error

Enter user-name:

ERROR:

ORA-12560: TNS:protocol adapter error

SP2-0157: unable to CONNECT to ORACLE after 3 attempts, exiting SQL*Plus

C:\Users\oracleplus>sqlplus -v

SQL*Plus: Release 11.2.0.2.0 Production

在这里发现sqlplus的版本信息不正确,我的数据库安装的11.2.0.1,这么怎么显示sqlplus是11.2.0.2,然后进入%ORACLE_HOME%/bin目录下面执行sqlplus,登录成功

C:\Users\oracleplus>cd e:\oracle\11_2_0\BIN

e:\oracle\11_


http://www.ppmy.cn/news/534217.html

相关文章

UVA - 12506

Shortest Names 比赛时队友直接上的纯暴力&#xff0c;结果超时&#xff0c;我就想先排一下序&#xff0c;之后每次判断相邻的两个&#xff0c;实时更新每个字符串的喊出长度 #include <cstdio> #include <cstring> #include <iostream> #include <alg…

UVA12506 字典树简单应用

分析&#xff1a;构造字典树深搜 采用刘汝佳的左儿子右兄弟的构树方式&#xff0c;节省了大量的空间。 代码如下&#xff1a; #include <cstdio> #include <cmath> #include <cstring> using namespace std;typedef long long ll; const int maxn 1e610; i…

UVA 12506 Shortest Names

In a strange village, people have very long names. For example: aaaaa, bbb and abababab. You see, it’s very inconvenient to call a person, so people invented a good way: just call a prefix of the names. For example, if you want to call ‘aaaaa’, you can …

SpringBoot+JPA整合ShardingShpere实现分表-读写分离

ShardingShpere 分表分库读写分离 ​ ShardingShpere 提供来了根据某个字段分库分表的功能和读写分离。 读写分离 当主服务有写入&#xff08;insert/update/delete&#xff09;语句时&#xff0c;从服务器自动获取。 写入线程从 master 数据库查询查询线程从 salve 数据库…

oracle imp导入dmp文件报12506错误解决办法

通过imp导入数据库dmp文件出错解决办法&#xff1a; IMP-00058: 遇到 ORACLE 错误 12560 ORA-12560: TNS: 协议适配器错误 IMP-00000: 未成功终止导入 遇到这个问题后&#xff0c;很多人会认为是本地服务名的原因&#xff0c;但经过测试&#xff0c;发现服务名是正常的。如果服…

Python知识点复习(一)

问1:f.seek(6, 0)的作用是什么? 答1:将文件对象f的指针从开始的位置偏移到6个字节的位置 拓展: 这是Python中文件操作的一个方法,其中f是一个已经打开的文件对象。该方法的第一个参数表示文件偏移量(offset),即从文件的起始位置开始向后移动的字节数,第二个参数表示偏移…

MySQL - 第7节 - MySQL内置函数

1.日期函数 1.1.常用的日期函数 常用的日期函数如下&#xff1a; 1.2.current_date函数 current_date函数用于获取当前的日期。如下&#xff1a; 1.3.current_time函数 current_time函数用于获取当前的时间。如下&#xff1a; 1.4.current_timestamp函数 current_timestamp函数…

Mysql高级查询语句

数据库是用来存储数据&#xff0c;更新&#xff0c;查询数据的工具&#xff0c;而查询数据是一个数据库最为核心的功能&#xff0c;数据库是用来承载信息&#xff0c;而信息是用来分析和查看的。所以掌握更为精细化的查询方式是很有必要的。本文将围绕数据的高级查询语句展开。…