Create a tbl pointer to Canoodle.
canoodle_tbl.Rd
If a name is not provided, will print a list of the available views in MY_DB.STG_CANOODLE.
Arguments
- conn
a DBI-compliant connection object. recommend using the 'connect_cdw()` function
- name
A character string specifying a table in the MY_DB.STG_CANOODLE schema
Examples
if (FALSE) {
conn <- connect_cdw()
canoodle_tbl(conn)
canoodle_tbl(conn, "ICU_STAY_DATAMART")
disconnect_cdw(conn)
}