dbplyr (version 0.0.0.9001)

in_schema: Refer to a table in a schema

Description

Refer to a table in a schema

Usage

in_schema(schema, table)

Arguments

schema, table
Names of schema and table.

Examples

Run this code
in_schema("my_schema", "my_table")

# Example using schemas with SQLite
con <- DBI::dbConnect(RSQLite::SQLite(), ":memory:")
src <- src_dbi(con)

# Add auxilary 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, in_schema("aux", "df"), temporary = FALSE)

con %>% tbl("df")
con %>% tbl(in_schema("aux", "df"))

Run the code above in your browser using DataCamp Workspace