Snowflake backend - querying tables in different databases from a single connection #6530
-
Hello! I'm trying to ramp up usage of Ibis in my day-to-day, and one friction I'm running into is not being able to query tables across different database from a single Ibis Snowflake connection. I'm wondering what the expectations are with this type of workflow? (specifically as it relates to Snowflake usage) Thanks! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Nvm. Just watched this Snowflake + Ibis Lighting Talk video from @cpcloud, and see that a way to accomplish what I'm after is to do the following:
I think I'm all good for now. |
Beta Was this translation helpful? Give feedback.
Nvm. Just watched this Snowflake + Ibis Lighting Talk video from @cpcloud, and see that a way to accomplish what I'm after is to do the following:
conn.table("<table name>", schema="<database>.<schema>")
I think I'm all good for now.