Connecting to Snowflake via ODBC
odbcConnectionColumns()
If the catalog, or the schema arguments are NULL, attempt to infer by querying for CURRENT_DATABASE() and CURRENT_SCHEMA(). We do this to aid with performance, as the SQLColumns method is more performant when restricted to a particular DB/schema.
## S4 method for signature 'Snowflake,character' dbExistsTableForWrite(conn, name, ..., catalog_name = NULL, schema_name = NULL)
conn: A DBI::DBIConnection object, as returned by dbConnect().
conn
dbConnect()
name: The table name, passed on to dbQuoteIdentifier(). Options are:
name
dbQuoteIdentifier()
"table_name"
Id()
Id(schema = "my_schema", table = "table_name")
SQL()
SQL('"my_schema"."table_name"')
...: Other parameters passed on to methods.
...
catalog_name, schema_name: Catalog and schema names.
catalog_name, schema_name
Useful links