From 393ee26195bc02b46de21debf46d3b2e5eacc34b Mon Sep 17 00:00:00 2001
From: Natalie <nat@metabase.com>
Date: Tue, 28 Mar 2023 16:34:36 -0400
Subject: [PATCH] docs - update bigquery (#29619)

---
 docs/databases/connections/bigquery.md | 14 ++++++++------
 1 file changed, 8 insertions(+), 6 deletions(-)

diff --git a/docs/databases/connections/bigquery.md b/docs/databases/connections/bigquery.md
index cc4062ade4b..5331e5cfa7e 100644
--- a/docs/databases/connections/bigquery.md
+++ b/docs/databases/connections/bigquery.md
@@ -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.
 
-- 
GitLab