Skip to content
Snippets Groups Projects
Unverified Commit 393ee261 authored by Natalie's avatar Natalie Committed by GitHub
Browse files

docs - update bigquery (#29619)

parent 468ce063
No related branches found
No related tags found
No related merge requests found
......@@ -60,18 +60,20 @@ You can specify which BigQuery datasets you want to sync and scan. Options are:
- Only these...
- All except...
For the Only these and All except options, you can input a comma-separated list of values to tell Metabase which datasets you want to include (or exclude). For example:
> A BigQuery dataset is similar to a schema. Make sure to enter your dataset names (like `marketing`), _not_ your table names (`marketing.campaigns`).
Let's say you have three datasets: foo, bar, and baz.
To sync all three datasets, select **Only these...** and enter:
```
foo,bar,baz
```
You can use the `*` wildcard to match multiple datasets.
Let's say you have three datasets: foo, bar, and baz.
To sync datasets based on a string match, use the `*` wildcard:
- If you have **Only these...** set, and enter the string `b*`, you'll sync with bar and baz.
- If you have **All except...** set, and enter the string `b*`, you'll just sync foo.
- To sync bar and baz, select **Only these...** and enter the string `b*`.
- To sync foo only, select **All except...** and enter the string `b*`.
Note that only the `*` wildcard is supported; you can't use other special characters or regexes.
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment