我有一些每月的天气数据,我想插入到 Oracle 数据库表中,但我想批量插入相应的记录以提高效率。谁能建议我如何在 Python 中执行此操作?
例如,假设我的表有四个字段:一个站 ID、一个日期和两个值字段。记录由站 ID 和日期字段(复合键)唯一标识。我必须为每个站点插入的值将保存在一个包含 X 个完整年数据的列表中,例如,如果有两年的值,那么值列表将包含 24 个值。
如果我想一次插入一条记录,我假设下面是我这样做的方式:
connection_string = "scott/tiger@testdb"
connection = cx_Oracle.Connection(connection_string)
cursor = cx_Oracle.Cursor(connection)
station_id = 'STATION_1'
start_year = 2000
temps = [ 1, 3, 5, 7, 9, 1, 3, 5, 7, 9, 1, 3 ]
precips = [ 2, 4, 6, 8, 2, 4, 6, 8, 2, 4, 6, 8 ]
number_of_years = len(temps) / 12
for i in range(number_of_years):
for j in range(12):
# make a date for the first day of the month
date_value = datetime.date(start_year + i, j + 1, 1)
index = (i * 12) + j
sql_insert = 'insert into my_table (id, date_column, temp, precip) values (%s, %s, %s, %s)', (station_id, date_value, temps[index], precips[index]))
cursor.execute(sql_insert)
connection.commit()
有没有办法做我上面正在做的事情,但是以一种执行批量插入以提高效率的方式?顺便说一句,我的经验是使用 Java/JDBC/Hibernate,所以如果有人可以给出与 Java 方法相比的解释/示例,那么它会特别有帮助。
编辑:也许我需要使用 cursor.executemany() 如此处所述?
提前感谢您的任何建议、意见等。