View source: R/oracle_create_table.R
oracle_create_table | R Documentation |
{dbplyr}
chainPipe into the end of a {dbplyr}
to create a table in your database schema.
oracle_create_table(df, schema_name = NULL, table_name, overwrite = TRUE)
df |
Lazy Oracle table |
schema_name |
Name of the schema. Default is NULL (your own). |
table_name |
Name of the table |
overwrite |
Whether to overwrite an existing table |
## Not run:
dplyr::tbl(src = con, from = "DUAL") %>%
oracle_create_table("<schema_name>", "<table_name>")
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.