问题:利用Python连接Oracle时报错,完整过程如下 import cx_Oracle conn = cx_Oracle.connect('testma/dingjia@192.168.88.139:1521/orcl') Traceback (most recent call last): File "", line 1, in cx_Oracle.DatabaseError: ORA-12541: TNS:no listener 解决: 打开Oralce机器的Net Conf…
找了好久这个问题,有人说是tcps的问题,需要自己生成证书什么的,后来才发现原来是 钱包文件路径 的问题,钱包文件解压后必须放在instantclien/network/admin下,在Windows和Linux平台下都测试了,确实是路径导致的. 剩下的按照文档来就可以了,环境变量什么的,都很简单,Oracle Instant Client下载个light版本的就可以了,解压后创建network/admin目录,把解压好的文件,就是那些tnsnames.ora什么的放进去 贴一下可以正常运行的环…
打开https://oracle.github.io/odpi/doc/installation.html 官方相关如下 Oracle Instant Client RPM¶ To run ODPI-C applications with Oracle Instant Client RPMs: Download an Oracle 11.2, 12.1 or 12.2 “Basic” or “Basic Light” RPM: 64-bit or 32-bit, matching your ap…
ODPI-C Installation¶ Overview Oracle Client and Database Versions Linux Oracle Instant Client Zip Oracle Instant Client RPM Local Database or Full Oracle Client Windows Oracle Instant Client Zip Local Database or Full Oracle Client macOS Oracle Insta…
执行qmake时报错,如下图所示: 解决方法: 将***.pro文件夹的属主改为当前用户,具体操作为: 1.切换登录用户为:root 2.#chown -R ies:ies /usr/appsoft 请将ies:ies改为你的用户,/usr/appsoft改为你的文件夹. 经过以上修改qmake执行成功.…
0.序言 项目主要使用oracle但是我不太喜欢其他编程语言,加上可能需要用python部署算法包,从oracle表中读出数据,处理完成后在放回oracle中去,所以在windows上就想到先用python试一下,自然搜到了cx_oracle(一个按照Python DB API的oracle的实现,如MySQL.PostgreSQL等,只需要安装相应的软件包即可,流程及操作接口都与cx_Oracle基本一致),下面就简单解释一下怎么用这个包进行增删改查. 1.windows 10 安装cx_Or…
1.使用pip命令安装cx_Oracle $ pip install cx_Oracle 2.安装oracle客户端,并添加到path 下载路径: http://www.oracle.com/technetwork/database/database-technologies/instant-client/downloads/index.html 根据对应的系统类型和版本以及oracle版本进行下载,比如64位python的windows平台,oracle版本为11g, 下载instantcli…
python中连接oracle数据库使用第三方库文件cx_Oracle时遇到了各种问题,网上查找资料调试了几天才弄好,下面是不断调试后总结的一些经验.1.oracle客户端(Oracle Instant Client)版本需要和操作系统版本位数相同,同时cx_Oracle官方文档(http://cx-oracle.readthedocs.io/en/latest/installation.html)上有这样一段话 Version 12.2 client libraries can connect…
我们在做数据分析,清洗的过程中,很多时候会面对各种各样的数据源,要针对不同的数据源进行清洗,入库的工作.当然python这个语言,我比较喜欢,开发效率高,基本上怎么写都能运行,而且安装配置简单,基本上有网的环境pip install全部都搞定,没网的话,把whl包copy过来一行命令也就解决了(windows下python3.5使用pip离线安装whl包). 本篇博客就针对,在windows平台下使用python3(python2社区将要停止支持,使用3是大势所趋),读取xls,xlsx格式的数…
这里简单总结一下Python操作Oracle数据库这方面的相关知识.只是简单的整理一下之前的实验和笔记.这里的测试服务器为CentOS Linux release 7.5. 个人实验.测试.采集数据的一台机器. 1:安装cx_Oracle 这里简单介绍一下cx_Oracle,下面一段内容摘自cx_Oracle的作者(Anthony Tuininga )的一篇博文,详情参考https://www.oracle.com/technetwork/cn/topics/tuininga-cx-oracle…
# 如果报错参考的资料 https://blog.csdn.net/white_xuqin/article/details/82878860 场景再现: python-cx_oracle报错"DatabaseError: DPI-1047: 64-bit Oracle Client library cannot be loaded: " 解决方案: 一.检查本地是否安装Oracle,如果安装,检查版本是否和python一样都,都是64位. 二.如果本地没有安装Oracle,则需要安装.…
错误如下: E:\pargram>python Python 3.5.2 |Anaconda 4.2.0 (64-bit)| (default, Jul 5 2016, 11:41:13) [MSC v.1900 64 bit (AMD64)] on win32Type "help", "copyright", "credits" or "license" for more information. >>&g…
ORA-00001: 违反唯一约束条件 (.) ORA-00017: 请求会话以设置跟踪事件 ORA-00018: 超出最大会话数 ORA-00019: 超出最大会话许可数 ORA-00020: 超出最大进程数 () ORA-00021: 会话附属于其它某些进程:无法转换会话 ORA-00022: 无效的会话 ID:访问被拒绝 ORA-00023: 会话引用进程私用内存:无法分离会话 ORA-00024: 单一进程模式下不允许从多个进程注册 ORA-00025: 无法分配  ORA-00026:…
环境:DB VERSION: 11.2.0.4.0RAC 2 nodes 问题:邮件显示rman备份失败,查看rman备份日志 Starting Control File and SPFILE Autobackup at 2013-12-30 04:07:02released channel: c1released channel: c2released channel: c3released channel: c4RMAN-00571: ============================…
FIO14-C. Understand the difference between text mode and binary mode with file streams     Skip to end of metadata   Created by Justin Pincar, last modified by Carol J. Lallier on Oct 14, 2013 Go to start of metadata   Input and output are mapped int…
今天第一次使用Python连接Oracle数据库(多么可怕,三年码农没用Python手动连过Oracle) 首先: pip install cx_Oracle 好,安装完成,测试代码如下: from sqlalchemy import create_engine db_engine = create_engine('oracle://xynsx:whjyg_xynsx@10.128.85.8:1521/xyora') conn=db_engine.connect() result=conn.ex…
弄清版本,最重要!!! 首先安装配置时,必须把握一个点,就是版本一致!包括:系统版本,python版本,oracle客户端的版本,cx_Oracle的版本,然后安装配置就容易了! 如果已经安装Python,查看你安装的Python版本是多少位的: 当然,你64位的操作系统也是可以安装32位的开发环境.反之则不行!切记! oracle客户端的版本,cx_Oracle的版本,要与Python版本和位数对应: 比如: Python版本:Python3.4.3   32位: cx_Oracle的版本:c…
1.cx_Oracle.DatabaseError: ORA-24315: illegal attribute type 2.cx_Oracle.InterfaceError: Unable to acquire Oracle environment handle Python通过cx_Oracle模块连接oracle数据库报如上错误,都是应为oracle客户端的问题导致,只需要将对应版本的*.dll(10g:oci.dll, oraociei10.dll, oraocci10.dll:11g:…
http://www.oracle.com/technetwork/topics/linuxx86-64soft-092277.html---下载instantclient-basic-linux.x64-11.2.0.4.0 http://sourceforge.net/projects/cx-oracle/files/5.1.2/----下载cx_Oracle-5.1.2.tar.gz https://pypi.python.org/pypi/cx_Oracle----下载cx_Oracle…
确认版本: oracle版本:64位 python版本:64位 下载cx_Oracle的whl包:64位 安装whl包:pip install wheel cd到下载路径安装cx_Oracle的whl包:pip install cx_Oracle-7.2.3-cp36-cp36m-win_amd64.whl 安装后到python目录下有文档,里面有使用方法:https://oracle.github.io/python-cx_Oracle/index.html 由于数据库版本是11,所以这里下载…
ORA-39095: Dump file space has been exhausted Table of Contents 1. 简述 2. 错误信息 3. 分析 4. 解决 5. 扩展 1 简述 一个朋友在导数据的时候,突然遇到ORA-39095错误.随即查看磁盘空间,发现才使用了60%多.而导出的数据只有几个G. 明明有空间,为什么会报空间耗尽呢?百爪搔心的问我~ 下面是分析和解决过程. 2 错误信息 $ oerr ora 39095 39095, 00000, "Dump file s…
一.问题说明 操作系统: RedHat 5.8 数据库: 11.2.0.3 2节点RAC. 使用RMAN 备份的时候,报如下错误: ORA-00245: control file backup failed;target is likely on a local file system 这个问题只存在Oracle 11gR2以后的RAC 环境. 二.ORA-245 触发条件 在以下的5种环境下,会出现ORA-00245的错误. 2.1 RAC 环境下,自动备份备份控制文件,会因为ORA-245的…
关于PLSQL连接ORACLE配置字符串 首先要讲一下下面的一些知识 1.ORACLE_SID:(ORACLE SYSTEM IDENTIFIER) Oracle实例是由SGA和一组后台进程组成的,实例的创建和启动需要一个参数文件,而参数文件的名称就是由ORACLE_SID决定的. 对于init文件…
Python--DBUtil包 1 简介 DBUtils是一套Python数据库连接池包,并允许对非线程安全的数据库接口进行线程安全包装.DBUtils来自Webware for Python. DBUtils提供两种外部接口: PersistentDB :提供线程专用的数据库连接,并自动管理连接. PooledDB :提供线程间可共享的数据库连接,并自动管理连接. 实测证明 PersistentDB 的速度是最高的,但是在某些特殊情况下,数据库的连接过程可能异常缓慢,而此时的PooledDB则…
access_timeSeptember 22, 2015 person_outlineMartin Rakhmanov share In this article, I will explain how to set up an encrypted communications channel in Oracle Database. This is the third in a series of blog posts I've published about encryption as it…
转自:http://blog.csdn.net/tianlesoftware/article/details/5024966 一. 坏块说明 1.1 相关链接 在看坏块之前,先看几个相关的链接,在后面的说明中,会用到链接中的一些内容. ORA-600 各个参数含义说明 http://blog.csdn.net/tianlesoftware/article/details/6645809 Oracle 不同故障的恢复方案 http://blog.csdn.net/tianlesoftware/ar…
61. View the Exhibit.Which statement regarding the dept and emp tables is true?A) When you delete a row from the emp table, you would receive a constraint violation error.B) When you delete a row from the dept table, you would receive a constraint vi…
To restore the database on a new host:1. Ensure that the backups of the target database are accessible on the new host.2. Configure the ORACLE_SID on hostb.3. Start RMAN on hostb and connect to the target database without connecting to the recovery c…
文档内容   用途   适用范围   详细信息   启动顺序:   集群状态   问题 1: OHASD 无法启动   问题 2: OHASD Agents  未启动   问题 3: OCSSD.BIN 无法启动   问题 4: CRSD.BIN 无法启动   问题 5: GPNPD.BIN 无法启动   问题 6: 其它的一些守护进程无法启动   问题 7: CRSD Agents 无法启动   问题 8: HAIP 无法启动       网络和域名解析的验证   日志文件位置, 属主和权限…
python 连接oracle 数据库 1.安装 cx_oracle pip install cx_oracle 2.出现 cx_Oracle.DatabaseError: DPI-1047: 64-bit Oracle Client library cannot be loaded: "dlopen(libclntsh.dylib, 1): image not found". See https://oracle.github.io/odpi/doc/installation.htm…