in_schema | R Documentation |
in_schema()
and in_catalog()
can be used to refer to tables outside of
the current catalog/schema. However, we now recommend using I()
as it's
typically less typing.
in_schema(schema, table)
in_catalog(catalog, schema, table)
catalog , schema , table |
Names of catalog, schema, and table.
These will be automatically quoted; use |
# Previously:
in_schema("my_schema", "my_table")
in_catalog("my_catalog", "my_schema", "my_table")
in_schema(sql("my_schema"), sql("my_table"))
# Now
I("my_schema.my_table")
I("my_catalog.my_schema.my_table")
I("my_schema.my_table")
# Example using schemas with SQLite
con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
# Add auxiliary schema
tmp <- tempfile()
DBI::dbExecute(con, paste0("ATTACH '", tmp, "' AS aux"))
library(dplyr, warn.conflicts = FALSE)
copy_to(con, iris, "df", temporary = FALSE)
copy_to(con, mtcars, I("aux.df"), temporary = FALSE)
con %>% tbl("df")
con %>% tbl(I("aux.df"))
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.