| list_tables {bigrquery} | R Documentation |
List available tables in dataset.
list_tables(project, dataset, page_size = 50, max_pages = Inf)
project |
The project name, a string |
dataset |
The name of the dataset to create, a string |
page_size |
Number of items per page |
max_pages |
Maximum number of pages to retrieve |
a character vector of table names
API documentation: https://developers.google.com/bigquery/docs/reference/v2/tables/list
Other tables: delete_table,
get_table
## Not run:
list_tables("publicdata", "samples")
list_tables("githubarchive", "github")
list_tables("publicdata", "samples", max_pages = 2, page_size = 2)
## End(Not run)