Skip to content
Advertisement

Tag: snowflake-cloud-data-platform

Snowflake table created with SQLAlchemy requires quotes (“”) to query

I am ingesting data into Snowflake tables using Python and SQLAlchemy. These tables that I have created all require quotations to query both the table name and the column names. For example, select * from “database”.”schema”.”table” where “column” = 2; Will run, while select * from database.schema.table where column = 2; will not run. The difference being the quotes. I

SQLAlchemy engine.connect() fails for Snowflake using keypair authentication

My goal is to be able to write a pandas dataframe to Snowflake using the to_sql() function. I am able to successfuly query from Snowflake using read_sql() with no problems. It appears that to_sql() requires a slightly different configuration I can’t figure out. I’ve tried two different approaches that I’ve outlined below. I’m guessing, but could be wrong that the

Advertisement