将数据框加载到雪花时出错

时间:2020-10-09 19:32:36

标签: python pandas snowflake-cloud-data-platform

在将数据从python数据帧加载到雪花时,我遇到了以下错误。有人可以详细解释这些错误吗?

Python数据类型[方法]不能自动映射到Snowflake数据类型。明确指定雪花数据类型。

下面是我用来将数据加载到雪花中的代码:

df.to_sql(table, engine, index=False, method='multi',chunksize=3000)

1 个答案:

答案 0 :(得分:1)

您应该将Snowflake Connector for Python与熊猫一起使用,以将数据读写到Snowflake。假设您已正确设置此设置,则在调用to_sql时,需要使用method=pd_writeras per the documentation

您当前正在使用method=multi,这可能就是为什么您收到上述错误的原因。