ODBC Teradata Driver HY001 Memory allocation error. What is the meaning?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试): 问题: I am using the python script that inserts a batch of data into Teradata using the teradata python module with a script similar to the one below. It uses an ODBC connection and occasionally I get the following error: [HY001][Teradata][ODBC Teradata Driver] Memory allocation error . What does this error mean? And any suggestions on how to fix this? connection.executemany( 'INSERT INTO {}.{} ("{}") VALUES ({})' .format(database, table_name, '","'.join(column_names), ','.join(['?']*len(columns_names))), records_for_insert, batch=True ) 回答1: The