>백엔드 개발 >파이썬 튜토리얼 >Python cx_Oracle 모듈의 설치 및 사용에 대한 자세한 소개

Python cx_Oracle 모듈의 설치 및 사용에 대한 자세한 소개

高洛峰
高洛峰원래의
2017-02-13 13:51:001696검색

python cx_Oracle 모듈 설치

최근 단일 Oracle의 데이터를 MySQL Sharding 클러스터로 마이그레이션하기 위해 데이터 마이그레이션 스크립트를 작성해야 합니다. Linux에서 cx_Oracle을 설치하는 것이 약간 번거로운 것 같습니다. 그것을 꺼내서 요약을 하세요.

Oracle 클라이언트의 경우 해당 Python 모듈(여기서는 Oracle의 공식 Python 모듈인 cx_Oracle을 사용함)을 설치해야 할 뿐만 아니라 Oracle 클라이언트도 설치해야 합니다. 일반적으로 Instant Client를 선택하면 충분합니다. tnsnames.ora도 구성해야 합니다(물론 간단하게 호스트:포트/스키마를 통해 액세스할 수도 있습니다).

설치:

1. 먼저 버전을 확인하세요. Oracle 데이터가 약간 오래되었기 때문에 이전 버전인 Oracle Instant Client 10.2.0.4를 선택했습니다.

2. instantclient-basic을 다운로드합니다. 다운로드 주소: http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html. . 이것은 Oracle에 대한 심각한 BS입니다. 다운로드하기 전에 등록해야 합니다. 중요한 점은 등록할 때 비밀번호는 숫자와 문자가 필요하며 문자는 대문자여야 하며 다음과 같아야 한다는 것입니다. 최소 8자. 이로 인해 은행 비밀번호보다 더 안전한 비밀번호를 얻게 되었고(글쎄, 이제 입력한 내용을 잊어버렸습니다...) 기본 다운로드만 하면 됩니다.

$wget http://download.oracle.com/otn/linux/instantclient/10204/basic-10.2.0.4.0-linux-x86_64.zip

3. 설치 구성

$unzip instantclient-basic-linux.x64-10.2.0.4.0.zip
$cd instantclient_10_2
$cp * /usr/lib  #直接放到动态库搜索路径中,不需要额外的环境配置

或
$unzip instantclient-basic-linux.x64-10.2.0.4.0.zip
$cp -rf instantclient_10_2 /opt/
$vi /etc/profile
   export ORACLE_HOME=/opt/instantclient_10_2
   export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$ORACLE_HOME

$source /etc/profile

4. tns를 구성할 필요가 없습니다)

tnsnames.ora는 실제로 존재하지 않으므로 직접 만들어야 합니다(이것도 역겹습니다. 처음에는 뭔가를 설치해야 한다고 생각했습니다...). 이 방법을 사용하지 마세요. 관심이 있으시면 Google에 검색해 보세요.

5. cx_Oracle Python 모듈 다운로드 및 설치

$wget http://downloads.sourceforge.net/project/cx-oracle/5.1.2/cx_Oracle-5.1.2-10g-py26-1.x86_64.rpm
$rpm -ivh cx_Oracle-5.1.2-10g-py26-1.x86_64.rpm 
$ls /usr/lib/python2.6/site-packages/cx_Oracle.so #有这个文件表示安装成功,根据python的位置,也可能在其他地方,自己找一下吧

6. 확인 및 문제 해결

$python
>>import cx_Oracle

오류가 보고된 경우: import cx_Oracle이 ImportError: libclntsh.so.10.1: 공유 객체 파일을 열 수 없음: 해당 파일 또는 디렉터리가 없음

은 인스턴트의 동적 라이브러리를 의미합니다. 클라이언트를 찾을 수 없으면 환경을 확인하십시오. 변수가 구성되어 있는지, 유효한지, 버전이 올바른지 확인하십시오.

오류가 보고되는 경우: ImportError: ./cx_Oracle.so: 정의되지 않은 기호: PyUnicodeUCS4_Decode

Google的信息:There is nothing wrong with Debian. Python supports two incompatible 
 modes of operation for Unicode, UCS2 (the default), and UCS4. Debian uses the default,
 Redhat uses UCS4. You need to recompile the extension for UCS-2 mode
 (i.e. using a Debian installation); this would fix the undefined symbol: PyUnicodeUCS4_Decode

그러므로 Python을 다시 컴파일하세요

$./configure --prefix=/usr/local/python2.6.5 --enable-shared -enable-unicode=ucs4
$make;make install

다시 확인해보니 드디어 import가 정상이 되었습니다.

사용법:

1. 기본 연결 – Oracle tns 별칭 사용

connection =cx_Oracle.connect("tp/tp@ocn_test")
#查看tns alias命令
cmd>tnsping ocn_test
TNS Ping Utility forLinux: Version 9.2.0.8.0-Production on 27-SEP-201110:47:48
Copyright (c) 1997, 2006, Oracle Corporation. Allrights reserved.
Used parameter files:
/opt/……/sqlnet.ora
Used TNSNAMES adapter to resolve the alias
Attempting to contact (DESCRIPTION =(ADDRESS_LIST =(ADDRESS =(PROTOCOL =TCP)(HOST =10.20.36.19)(PORT =1520))) (CONNECT_DATA =(SID =ocntest)))
OK (10msec)

2. 사용자가 비밀번호를 입력합니다. 연결

pwd =getpass.getpass()
connection =cx_Oracle.connect("tp",pwd,"ocn_test")

3. 사용자가 Python 명령에 연결 계정 정보를 python script.py tp/tp@ocn_test

connection =cx_Oracle.connect(sys.argv[1])

4. Easy Connect 구문을 사용하여 Drive

connection =cx_Oracle.connect('tp','tp','10.20.36.19:1521/ocntest')
#or
connection =cx_Oracle.connect('tp/tp@10.20.36.19:1521/ocntest')

5. 먼저 DSN을 사용하여 TNSNAME

tns_name =cx_Oracle.makedsn('10.20.36.19','1521',' ocntest ')
connection =cx_Oracle.connect('tp','tp',tns_name)

6. SYSDBA

connection =cx_Oracle.connect('tp/tp@ocn_test', mode=cx_Oracle.SYSDBA)
#or as SYSOPER
connection =cx_Oracle.connect('tp/tp@ocn_test', mode=cx_Oracle.SYSOPER)

Linux 서버에서 Oracle 작업을 수행할 때 오류가 발생했습니다:

TNS:listener does not currently know of service requested in connect descriptor

해결책:

문제 분석은 http://를 참조하세요. ora-12514.ora-code.com/, 많은 고민 끝에 마침내 다섯 번째 연결 방법을 사용하여 문제를 즉시 해결했습니다.

읽어주셔서 감사합니다. 도움이 되기를 바랍니다. 이 사이트를 지원해 주셔서 감사합니다!

python cx_Oracle 모듈 설치 및 사용에 대한 자세한 내용은 PHP 중국어 홈페이지를 참고해주세요!

성명:
본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.