Unable to write from Pandas Dataframe to Redshift Table #48
-
Hello, I am using the write_dataframe() method to write a table into a Redshift Cluster. with redshift_connector.connect( |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @adiyer27 , Apologies for the late response -- the cause for this issue is that |
Beta Was this translation helpful? Give feedback.
Hi @adiyer27 ,
Apologies for the late response -- the cause for this issue is that
conn.autocommit
is set to false by default, so you must manually commit usingconn.commit()
or enable autocommit by settingconn.autocommit = True
.