List All Tables Visible to the Connection
list_all_tables.RdReturns a lazy tibble of all tables visible to the current connection by
querying information_schema.tables (across all catalogs/databases and
schemas).
Value
A dbplyr lazy tibble with columns:
table_catalog— database/catalog nametable_schema— schema nametable_name— table name
Details
The result is a dbplyr lazy table (tbl_dbi). Use collect() to bring
results into R as a local tibble.