bigrquery (version 0.4.1)

list_tables: List available tables in dataset.

Description

List available tables in dataset.

Usage

list_tables(project, dataset, page_size = 50, max_pages = Inf)

Arguments

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

Value

a character vector of table names

See Also

API documentation: https://developers.google.com/bigquery/docs/reference/v2/tables/list

Other tables: delete_table, get_table

Examples

Run this code
# NOT RUN {
list_tables("publicdata", "samples")
list_tables("githubarchive", "github")
list_tables("publicdata", "samples", max_pages = 2, page_size = 2)
# }

Run the code above in your browser using DataLab