时间:2021-05-22
本文实例讲述了Python使用cx_Oracle模块将oracle中数据导出到csv文件的方法。分享给大家供大家参考。具体实现方法如下:
# Export Oracle database tables to CSV files# FB36 - 201007117import sysimport csvimport cx_Oracleconnection = raw_input("Enter Oracle DB connection (uid/pwd@database) : ")orcl = cx_Oracle.connect(connection)curs = orcl.cursor()printHeader = True # include column headers in each table outputsql = "select * from tab" # get a list of all tablescurs.execute(sql)for row_data in curs: if not row_data[0].startswith('BIN$'): # skip recycle bin tables tableName = row_data[0] # output each table content to a separate CSV file csv_file_dest = tableName + ".csv" outputFile = open(csv_file_dest,'w') # 'wb' output = csv.writer(outputFile, dialect='excel') sql = "select * from " + tableName curs2 = orcl.cursor() curs2.execute(sql) if printHeader: # add column headers if requested cols = [] for col in curs2.description: cols.append(col[0]) output.writerow(cols) for row_data in curs2: # add table rows output.writerow(row_data) outputFile.close()希望本文所述对大家的Python程序设计有所帮助。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
最近在用Python编写连接数据库获取记录的脚本,其中用到了cx_Oracle模块。它的语法主要如下:cx_Oracle.connect('username',
本文实例讲述了python链接Oracle数据库的方法。分享给大家供大家参考。具体如下:这里使用python链接Oracle数据库需要引用cx_Oracle库#
本文实例讲述了Python使用cx_Oracle模块操作Oracle数据库。分享给大家供大家参考,具体如下:ORACLE_SID参数,这个参数是操作系统中用到的
python连接oracle数据库的方法,具体如下1.首先安装cx_Oracle包2.解压instantclient-basic-windows.x64-11.
本文实例讲述了python使用cx_Oracle模块进行查询操作。分享给大家供大家参考,具体如下:#!/usr/bin/envpython#-*-coding: