<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom">
  <channel>
    <title>GA4 BigQuery Newsletter For Marketing Analytics</title>
    <description>BigQuery and SQL knowledge is not only required for working with GA4 but will also open up doors for new career opportunities. This FREE newsletter is all you need to learn and master BigQuery and SQL. Join 3000+ other Digital Marketers and Analysts and take a step towards a brighter career.</description>
    
    <link>https://bigquery.optizent.com/</link>
    <atom:link href="https://rss.beehiiv.com/feeds/IL4CM0ruZ8.xml" rel="self"/>
    
    <lastBuildDate>Sat, 12 Sep 2026 03:29:34 +0000</lastBuildDate>
    <pubDate>Thu, 10 Sep 2026 22:31:05 +0000</pubDate>
    <atom:published>2026-09-10T22:31:05Z</atom:published>
    <atom:updated>2026-09-12T03:29:34Z</atom:updated>
    
      <category>Marketing</category>
      <category>Data Science</category>
      <category>Technology</category>
    <copyright>Copyright 2026, GA4 BigQuery Newsletter For Marketing Analytics</copyright>
    
    <image>
      <url>https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/publication/logo/e8e98343-caba-4191-b5a6-e26347b7b436/Copy_of_Copy_of_Copy_of_Don_t_Like_GA4.png</url>
      <title>GA4 BigQuery Newsletter For Marketing Analytics</title>
      <link>https://bigquery.optizent.com/</link>
    </image>
    
    <docs>https://www.rssboard.org/rss-specification</docs>
    <generator>beehiiv</generator>
    <language>en-us</language>
    <webMaster>support@beehiiv.com (Beehiiv Support)</webMaster>

      <item>
  <title>💡 BigQuery Tip of the Week: Use QUALIFY to find the latest event for each user</title>
  <description></description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/67045283-a030-45d8-891c-f525f74c68f8/bigquery-qualify.png" length="1574965" type="image/png"/>
  <link>https://bigquery.optizent.com/p/use-qualify-to-find-the-latest-event-for-each-user</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/use-qualify-to-find-the-latest-event-for-each-user</guid>
  <pubDate>Thu, 10 Sep 2026 22:31:05 +0000</pubDate>
  <atom:published>2026-09-10T22:31:05Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Need the most recent event for every GA4 user?</p><p class="paragraph" style="text-align:left;">You could create a subquery with <code>ROW_NUMBER()</code> and then filter it. But BigQuery gives you a cleaner option: <code>QUALIFY</code>.</p><div class="codeblock"><pre><code>SELECT
  user_pseudo_id,
  event_name,
  event_timestamp
FROM `project.analytics_123456789.events_*`
WHERE _TABLE_SUFFIX BETWEEN &#39;20260901&#39; AND &#39;20260907&#39;
QUALIFY ROW_NUMBER() OVER (
  PARTITION BY user_pseudo_id
  ORDER BY event_timestamp DESC
) = 1;</code></pre></div><p class="paragraph" style="text-align:left;"><code>ROW_NUMBER()</code> ranks each user&#39;s events from newest to oldest.</p><p class="paragraph" style="text-align:left;"><code>QUALIFY</code> then keeps only <b>#1, the user&#39;s most recent event.</b></p><p class="paragraph" style="text-align:left;"><b>Why this is useful with GA4 data</b></p><p class="paragraph" style="text-align:left;">You can use the same pattern to find:</p><p class="paragraph" style="text-align:left;">✓ A user&#39;s latest event<br>✓ Their most recent traffic source<br>✓ Their last purchase<br>✓ The latest event in each session<br>✓ The most recent value of a user property</p><p class="paragraph" style="text-align:left;"><b>The BigQuery trick:</b> <code>WHERE</code> filters rows <i>before</i> window functions are calculated. <code>QUALIFY</code> lets you filter based on the result of a window function.</p><p class="paragraph" style="text-align:left;">Cleaner SQL. Fewer unnecessary subqueries.</p><p class="paragraph" style="text-align:left;">Thank you,<br>Anil Batra, Founder <a class="link" href="https://www.optizent.com?utm_source=beehiiv&utm_medium=email&utm_campaign=bigquery-tip-of-the-week-use-qualify-to-find-the-latest-event-for-each-user" target="_blank" rel="noopener noreferrer nofollow">Optizent</a></p><p class="paragraph" style="text-align:left;"><span style="background-color:#ffffff;">P.S. Want to become more confident with BigQuery? Enroll in my </span><span style="color:inherit;"><span style="text-decoration:underline;"><i><a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-unnest-creates-more-rows&_bhlid=407d4e02d485889310313ef59df379ec41f4f88d" target="_blank" rel="noopener noreferrer nofollow" style="color: #0c4a6e">BigQuery for Marketers and Marketing Analysts course</a></i></span></span><span style="background-color:#ffffff;">.</span></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=e2585a8f-2024-4c9c-ae0d-e1ff76c8d8bd&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>This Week&#39;s BigQuery Insight: UNNEST Creates More Rows</title>
  <description>That one line of SQL may be multiplying your data by 15x.</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/66986702-bc5e-44d9-b01d-36decd52a346/unnest-bigquery.png" length="1263821" type="image/png"/>
  <link>https://bigquery.optizent.com/p/this-week-s-bigquery-insight-unnest-creates-more-rows</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/this-week-s-bigquery-insight-unnest-creates-more-rows</guid>
  <pubDate>Thu, 23 Jul 2026 16:21:08 +0000</pubDate>
  <atom:published>2026-07-23T16:21:08Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Have you ever wondered why some BigQuery queries against GA4 data are unexpectedly slow?</p><p class="paragraph" style="text-align:left;">The answer is often a single word: <code>UNNEST</code>.</p><p class="paragraph" style="text-align:left;">GA4 stores parameters in a nested structure. Every time you use <code>UNNEST(event_params)</code>, BigQuery creates additional rows behind the scenes.</p><p class="paragraph" style="text-align:left;">Imagine a single event has these parameters:</p><ul><li><p class="paragraph" style="text-align:left;">page_location</p></li><li><p class="paragraph" style="text-align:left;">page_title</p></li><li><p class="paragraph" style="text-align:left;">page_referrer</p></li><li><p class="paragraph" style="text-align:left;">session_id</p></li><li><p class="paragraph" style="text-align:left;">source</p></li></ul><p class="paragraph" style="text-align:left;">That one event is now treated as five rows after <code>UNNEST</code>.</p><p class="paragraph" style="text-align:left;">If your table contains 10 million events with an average of 15 parameters each, you&#39;ve just turned 10 million rows into 150 million rows.</p><p class="paragraph" style="text-align:left;">That&#39;s why query performance can suddenly degrade.</p><p class="paragraph" style="text-align:left;">Instead of unnesting everything:</p><div class="codeblock"><pre><code>SELECT *
FROM `project.analytics_123456.events_*`,
UNNEST(event_params)
</code></pre></div><p class="paragraph" style="text-align:left;">Ask yourself: &quot;Do I really need every parameter, or just one?&quot;</p><p class="paragraph" style="text-align:left;">If you only need <code>page_location</code>, consider extracting just that value:</p><div class="codeblock"><pre><code>SELECT
  (
    SELECT value.string_value
    FROM UNNEST(event_params)
    WHERE key = &#39;page_location&#39;
  ) AS page_location
FROM `project.analytics_123456.events_*`
</code></pre></div><p class="paragraph" style="text-align:left;">The lesson this week: Every <code>UNNEST</code> has a cost.</p><p class="paragraph" style="text-align:left;">Understanding how nested data expands in BigQuery will make you a faster, more efficient analyst, especially when working with GA4 exports.</p><p class="paragraph" style="text-align:left;">Remember: The biggest BigQuery optimizations often come from processing fewer rows, not writing more complex SQL.</p><p class="paragraph" style="text-align:left;">Thank you,</p><p class="paragraph" style="text-align:left;">Anil Batra, <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-unnest-creates-more-rows" target="_blank" rel="noopener noreferrer nofollow">Optizent Academy</a></p><p class="paragraph" style="text-align:left;">P.S. Want to become more confident with BigQuery? Enroll in my <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-unnest-creates-more-rows" target="_blank" rel="noopener noreferrer nofollow">BigQuery for Marketers and Marketing Analysts course</a>.</p><p class="paragraph" style="text-align:left;">P.P.S. Using GA4? Make sure you&#39;re analyzing good data. Run a quick audit with <a class="link" href="https://www.gaauditor.com?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-unnest-creates-more-rows" target="_blank" rel="noopener noreferrer nofollow">GA Auditor</a> to identify common implementation and tracking issues.</p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=b5637016-4085-4fa5-8090-247d3435c6f2&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>This Week&#39;s BigQuery Insight: Use LIMIT While Exploring Data</title>
  <description>A simple habit that can save you time when writing BigQuery queries.</description>
  <link>https://bigquery.optizent.com/p/this-week-s-bigquery-insight-use-limit-while-exploring-data</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/this-week-s-bigquery-insight-use-limit-while-exploring-data</guid>
  <pubDate>Fri, 17 Jul 2026 17:19:32 +0000</pubDate>
  <atom:published>2026-07-17T17:19:32Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">When you&#39;re writing a new query, don&#39;t try to analyze millions of rows immediately.</p><p class="paragraph" style="text-align:left;">Start by adding a <code>LIMIT</code> clause so you can quickly inspect the results and verify that your logic is correct.</p><div class="codeblock"><pre><code>SELECT
  event_date,
  event_name,
  user_pseudo_id
FROM `my_project.analytics_123456.events_*`
WHERE event_name = &#39;page_view&#39;
LIMIT 100;</code></pre></div><p class="paragraph" style="text-align:left;">This won&#39;t reduce the amount of data scanned, but it will help you:</p><ul><li><p class="paragraph" style="text-align:left;">Validate your query faster</p></li><li><p class="paragraph" style="text-align:left;">Catch mistakes early</p></li><li><p class="paragraph" style="text-align:left;">Iterate more efficiently</p></li><li><p class="paragraph" style="text-align:left;">Build confidence before running more complex analyses</p></li></ul><p class="paragraph" style="text-align:left;">Many BigQuery users spend more time fixing incorrect queries than writing them. Developing the habit of testing with a small set of results can save a lot of frustration.</p><p class="paragraph" style="text-align:left;"><b>Takeaway:</b> Before building a dashboard or report, make sure your query returns the expected data.</p><p class="paragraph" style="text-align:left;">See you next week with another BigQuery insight.</p><p class="paragraph" style="text-align:left;">Thank you,<br>Anil Batra</p><hr class="content_break"><p class="paragraph" style="text-align:left;">Next Action:</p><p class="paragraph" style="text-align:left;">1. If you&#39;re learning BigQuery for analytics, my <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-use-limit-while-exploring-data" target="_blank" rel="noopener noreferrer nofollow">BigQuery course walks through real-world examples using GA4 export data</a>.<br>2. If you are using GA4, then make sure GA4 is set up properly. You can run a free scan on <a class="link" href="https://www.gaauditor.com?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-use-limit-while-exploring-data" target="_blank" rel="noopener noreferrer nofollow">GAAuditor.com</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=fa888a3d-9dbd-4100-87c9-5668371d5699&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>This Week&#39;s BigQuery Insight: Learn to Read Queries Backwards</title>
  <description>Read SQL the way the database does—it makes every query easier to understand</description>
  <link>https://bigquery.optizent.com/p/this-week-s-bigquery-insight-learn-to-read-queries-backwards</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/this-week-s-bigquery-insight-learn-to-read-queries-backwards</guid>
  <pubDate>Thu, 02 Jul 2026 16:38:18 +0000</pubDate>
  <atom:published>2026-07-02T16:38:18Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">When you&#39;re learning SQL, don&#39;t read queries from top to bottom. </p><p class="paragraph" style="text-align:left;">Instead, read it in this order:</p><p class="paragraph" style="text-align:left;"><b>FROM → WHERE → GROUP BY → SELECT → ORDER BY</b></p><ol start="1"><li><p class="paragraph" style="text-align:left;"><code>FROM</code> – Where is the data coming from?</p></li><li><p class="paragraph" style="text-align:left;"><code>WHERE</code> – Which rows are being filtered?</p></li><li><p class="paragraph" style="text-align:left;"><code>GROUP BY</code> – How is the data being grouped?</p></li><li><p class="paragraph" style="text-align:left;"><code>SELECT</code> – What columns or calculations are being returned?</p></li><li><p class="paragraph" style="text-align:left;"><code>ORDER BY</code> – How are the results being sorted?</p></li></ol><p class="paragraph" style="text-align:left;">This approach mirrors how SQL is logically processed, making even complex queries much easier to understand.</p><p class="paragraph" style="text-align:left;">For example:</p><div class="codeblock"><pre><code>SELECT country,
       COUNT(*) AS users
FROM `my_dataset.users`
WHERE signup_date &gt;= &#39;2026-01-01&#39;
GROUP BY country
ORDER BY users DESC;</code></pre></div><p class="paragraph" style="text-align:left;">Read it like this:</p><ul><li><p class="paragraph" style="text-align:left;"><b>FROM</b> → Start with the <code>users</code> table.</p></li><li><p class="paragraph" style="text-align:left;"><b>WHERE</b> → Keep only users who signed up this year.</p></li><li><p class="paragraph" style="text-align:left;"><b>GROUP BY</b> → Group them by country.</p></li><li><p class="paragraph" style="text-align:left;"><b>SELECT</b> → Count the users in each country.</p></li><li><p class="paragraph" style="text-align:left;"><b>ORDER BY</b> → Show countries with the most users first.</p></li></ul><p class="paragraph" style="text-align:left;">Try it with every query you read this week, and you&#39;ll be surprised how quickly your SQL skills improve.</p><p class="paragraph" style="text-align:left;">If you&#39;d like to learn BigQuery and SQL through practical, real-world examples (especially using GA4 data), check out my <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-learn-to-read-queries-backwards" target="_blank" rel="noopener noreferrer nofollow">BigQuery course</a><b>.</b></p><p class="paragraph" style="text-align:left;">Enjoyed this tip? <a class="link" href="https://bigquery.optizent.com/subscribe?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-learn-to-read-queries-backwards" target="_blank" rel="noopener noreferrer nofollow">Invite your friends to this newsletter.</a></p><hr class="content_break"><p class="paragraph" style="text-align:left;">If you are using GA4, check out <a class="link" href="https://www.gaauditor.com?utm_source=beehiiv&utm_medium=email&utm_campaign=this-week-s-bigquery-insight-learn-to-read-queries-backwards" target="_blank" rel="noopener noreferrer nofollow">GA Auditor</a>, a platform that ensures you are collecting the right data.</p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=b8df71f5-4c7b-4a76-87b7-f81b317a8f9f&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Your BigQuery Analysis Is Only as Good as Your GA4 Data</title>
  <description>Download this free checklist with 150+ GA4 implementation and data quality checks before building your next report.</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/8d6c465f-098c-48a0-acad-c5b9bb68e7f2/150-ga4-audit-checklist.png" length="1865224" type="image/png"/>
  <link>https://bigquery.optizent.com/p/your-bigquery-analysis-is-only-as-good-as-your-ga4-data</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/your-bigquery-analysis-is-only-as-good-as-your-ga4-data</guid>
  <pubDate>Tue, 16 Jun 2026 21:49:44 +0000</pubDate>
  <atom:published>2026-06-16T21:49:44Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">One of the biggest mistakes I see analysts make is jumping straight into BigQuery analysis without first verifying that their GA4 implementation is actually collecting reliable data.</p><p class="paragraph" style="text-align:left;">The truth is simple:</p><p class="paragraph" style="text-align:left;"><b>Bad GA4 data becomes bad BigQuery data.</b></p><p class="paragraph" style="text-align:left;">Before you spend hours building SQL queries, dashboards, or attribution models, it&#39;s worth taking a few minutes to validate your GA4 setup.</p><p class="paragraph" style="text-align:left;">That&#39;s why I created a free checklist with <a class="link" href="https://www.gaauditor.com/ga4-audit-checklist/?utm_source=beehiiv&utm_medium=email&utm_campaign=your-bigquery-analysis-is-only-as-good-as-your-ga4-data" target="_blank" rel="noopener noreferrer nofollow"><b>150+ GA4 implementation and data-quality</b></a><a class="link" href="https://www.gaauditor.com/ga4-audit-checklist/?utm_source=beehiiv&utm_medium=email&utm_campaign=your-bigquery-analysis-is-only-as-good-as-your-ga4-data" target="_blank" rel="noopener noreferrer nofollow"><b> checks</b></a><a class="link" href="https://www.gaauditor.com/ga4-audit-checklist/?utm_source=beehiiv&utm_medium=email&utm_campaign=your-bigquery-analysis-is-only-as-good-as-your-ga4-data" target="_blank" rel="noopener noreferrer nofollow">.</a></p><p class="paragraph" style="text-align:left;">Inside you&#39;ll find checks for:</p><p class="paragraph" style="text-align:left;">✓ Events and conversions<br>✓ Ecommerce tracking<br>✓ User properties<br>✓ Traffic attribution<br>✓ Cross-domain measurement<br>✓ Consent Mode<br>✓ Google Tag Manager implementation<br>✓ Data quality issues<br>✓ Reporting accuracy<br>✓ And much more</p><p class="paragraph" style="text-align:left;">Whether you&#39;re an analyst, engineer, consultant, or marketer, this checklist can help you catch issues before they become expensive reporting problems.</p><p class="paragraph" style="text-align:left;">👉 <a class="link" href="https://www.gaauditor.com/ga4-audit-checklist/?utm_source=beehiiv&utm_medium=email&utm_campaign=your-bigquery-analysis-is-only-as-good-as-your-ga4-data" target="_blank" rel="noopener noreferrer nofollow"><b>Download the Free 150+ GA4 Audit Checklist</b></a></p><p class="paragraph" style="text-align:left;">Thanks,<br>Anil Batra</p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=2da51321-cc54-44c2-9b0d-bd508f6b6ea2&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Something I kept noticing while working with BigQuery</title>
  <description>Before better analysis comes better data</description>
  <link>https://bigquery.optizent.com/p/something-i-kept-noticing-while-working-with-bigquery</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/something-i-kept-noticing-while-working-with-bigquery</guid>
  <pubDate>Thu, 16 Apr 2026 22:30:01 +0000</pubDate>
  <atom:published>2026-04-16T22:30:01Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Over the past few years, I’ve spent a lot of time helping teams use BigQuery to answer more advanced business questions.</p><p class="paragraph" style="text-align:left;">But it always comes back to one thing:</p><p class="paragraph" style="text-align:left;">Before you start writing queries or building reports, you need to make sure the right data is actually being collected.</p><p class="paragraph" style="text-align:left;">Because if the underlying tracking isn’t set up correctly, even the most advanced analysis in BigQuery won’t lead to the right insights.</p><p class="paragraph" style="text-align:left;">That’s what I’ve been focusing on lately. </p><p class="paragraph" style="text-align:left;">I have built a simple tool to help with that. It checks your GA4 and GTM setup and highlights potential gaps that could impact your data quality.</p><p class="paragraph" style="text-align:left;">👉 You can try it here: <a class="link" href="https://www.gaauditor.com/get-started?utm_source=beehiiv&utm_medium=email&utm_campaign=something-i-kept-noticing-while-working-with-bigquery" target="_blank" rel="noopener noreferrer nofollow">GAAuditor.com</a></p><p class="paragraph" style="text-align:left;">It makes your BigQuery work more valuable—because you can trust the data you’re analyzing.</p><p class="paragraph" style="text-align:left;">Longer term, I’m exploring ways to make it easier to go from reliable data → to answering real business questions without so much manual effort of writing SQL queries. I’ll share more on that soon.</p><p class="paragraph" style="text-align:left;">Also, if you’re not already part of it, I will now be sharing all my updates, ideas, and tools here: 👉 <a class="link" href="https://insights.optizent.com/subscribe?utm_source=beehiiv&utm_medium=email&utm_campaign=something-i-kept-noticing-while-working-with-bigquery" target="_blank" rel="noopener noreferrer nofollow">https://insights.optizent.com/subscribe</a></p><p class="paragraph" style="text-align:left;">More soon.</p><p class="paragraph" style="text-align:left;">– Anil Batra<br><a class="link" href="https://www.optizent.com?utm_source=beehiiv&utm_medium=email&utm_campaign=something-i-kept-noticing-while-working-with-bigquery" target="_blank" rel="noopener noreferrer nofollow">Optizent.com</a></p><p class="paragraph" style="text-align:left;">P.S. <a class="link" href="https://www.gaauditor.com/get-started?utm_source=beehiiv&utm_medium=email&utm_campaign=something-i-kept-noticing-while-working-with-bigquery" target="_blank" rel="noopener noreferrer nofollow">Click here to sign up for GAuditor.com</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=04ff18c8-ec1b-41c5-b78f-f263aaf4906f&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Unlock GA4 Insights: Live BigQuery Training on Event Parameters</title>
  <description>🎓 Live 1-Hour Training: GA4 Event Parameters in BigQuery</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/8c197d45-add2-487b-ae00-e72ba59ebf60/ChatGPT_Image_Sep_11__2025__12_59_55_PM.png" length="1602325" type="image/png"/>
  <link>https://bigquery.optizent.com/p/unlock-ga4-insights-live-bigquery-training-on-event-parameters</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/unlock-ga4-insights-live-bigquery-training-on-event-parameters</guid>
  <pubDate>Tue, 16 Sep 2025 18:57:59 +0000</pubDate>
  <atom:published>2025-09-16T18:57:59Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
    <category><![CDATA[Advanced Level]]></category>
    <category><![CDATA[Sql]]></category>
    <category><![CDATA[Beginner Level]]></category>
    <category><![CDATA[Ga4]]></category>
    <category><![CDATA[Intermediate Level]]></category>
    <category><![CDATA[Bigquery]]></category>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Understanding event parameters is the key to unlocking the <i>real power</i> of GA4 data inside BigQuery.<br>Yet, for many marketers and analysts, event parameters remain confusing, messy, and hard to use.</p><p class="paragraph" style="text-align:left;">That’s why I’m hosting a <b>1-hour live, hands-on class</b>:</p><p class="paragraph" style="text-align:left;">📌<b> Topic:</b> <i>GA4 Event Parameters in BigQuery</i><br>📅<b> Date/Time:</b> September 24th at 10:00 AM PST<br>⏰<b> Duration:</b> 1 Hour<br><b>💻 Format:</b> <a class="link" href="https://academy.optizent.com/live-webinar/ga4-bigquery-event-paramaters/register?utm_source=beehiiv&utm_medium=email&utm_campaign=unlock-ga4-insights-live-bigquery-training-on-event-parameters" target="_blank" rel="noopener noreferrer nofollow">Live Online Class</a></p><p class="paragraph" style="text-align:left;">In this session, you’ll learn:</p><ul><li><p class="paragraph" style="text-align:left;">How GA4 event parameters are structured in BigQuery</p></li><li><p class="paragraph" style="text-align:left;">Simple SQL queries to extract and flatten parameters</p></li><li><p class="paragraph" style="text-align:left;">Tips to transform raw data into insights you can present with confidence</p></li></ul><p class="paragraph" style="text-align:left;">By the end, you’ll know exactly how to make sense of event parameters — without getting lost in the nested data.</p><p class="paragraph" style="text-align:left;">👉 <b><a class="link" href="https://academy.optizent.com/live-webinar/ga4-bigquery-event-paramaters/register?utm_source=beehiiv&utm_medium=email&utm_campaign=unlock-ga4-insights-live-bigquery-training-on-event-parameters" target="_blank" rel="noopener noreferrer nofollow">Reserve Your Spot Now</a></b></p><p class="paragraph" style="text-align:left;">Seats are limited, so don’t miss your chance to finally <i>decode event parameters in BigQuery</i>.</p><p class="paragraph" style="text-align:left;">See you live!<br>Anil Batra, Founder Optizent Academy</p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=97b94dd9-1ead-45ac-a1f4-4c070e420a15&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>SQL For Beginners Free Live Session</title>
  <description></description>
  <link>https://bigquery.optizent.com/p/sql-for-beginners-free-live-session</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/sql-for-beginners-free-live-session</guid>
  <pubDate>Mon, 02 Jun 2025 19:54:33 +0000</pubDate>
  <atom:published>2025-06-02T19:54:33Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">I am conducting a free live session for Beginners to Learn the basics of SQL.</p><p class="paragraph" style="text-align:left;">If you haven’t yet started with SQL or are struggling to make sense of SQL and GA4 data in BigQuery, then attend this live session.</p><p class="paragraph" style="text-align:left;">Here is the link to save your spot and get the Zoom link: <a class="link" href="https://academy.optizent.com/live-webinar/sql-fundamentals-for-beginners/register?utm_source=beehiiv&utm_medium=email&utm_campaign=sql-for-beginners-free-live-session" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/live-webinar/sql-fundamentals-for-beginners/register</a>.</p><p class="paragraph" style="text-align:left;">Thank you,<br>Anil Batra, Optizent Academy<br>P.S. If you can’t attend the live session, then join the <a class="link" href="https://academy.optizent.com/courses/digital-marketing-and-analytics-live-classes?coupon=SUCCESSLIVE&utm_source=beehiiv&utm_medium=email&utm_campaign=sql-for-beginners-free-live-session" target="_blank" rel="noopener noreferrer nofollow">Digital Analytics Live Session Vault</a> to get access to all of my live training sessions.</p><p class="paragraph" style="text-align:left;"></p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="unlock-the-social-media-tactics-tha">Unlock the Social Media Tactics That Work Right Now</h3><div class="image"><a class="image__link" href="https://blog.hubspot.com/masters-in-marketing-signup-socialtrends-0?utm_medium=email-media-newsletter&utm_source=masters-in-marketing&utm_campaign={{publication_alphanumeric_id}}&utm_content=incentivized-beehiiv&utm_term=Version-k&_bhiiv=opp_ed8b9522-31ff-4972-a7ab-26add1830014_fe732aa6&bhcl_id=0e8c2f93-05f1-431f-8161-da9aa4f8cf2c_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/dd40f830-dbaf-4194-8a56-702a09c539f7/Newsletter_Creator_Image_2_option_2.jpg?t=1745369509"/></a></div><p class="paragraph" style="text-align:left;">Is your social strategy ready for what&#39;s next in 2025?</p><p class="paragraph" style="text-align:left;">HubSpot Media&#39;s latest <a class="link" href="https://blog.hubspot.com/masters-in-marketing-signup-socialtrends-0?utm_medium=email-media-newsletter&utm_source=masters-in-marketing&utm_campaign={{publication_alphanumeric_id}}&utm_content=incentivized-beehiiv&utm_term=Version-k&_bhiiv=opp_ed8b9522-31ff-4972-a7ab-26add1830014_fe732aa6&bhcl_id=0e8c2f93-05f1-431f-8161-da9aa4f8cf2c_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Social Playbook</a> reveals what&#39;s actually working for over 1,000 global marketing leaders across TikTok, Instagram, LinkedIn, Pinterest, Facebook, and YouTube.</p><p class="paragraph" style="text-align:left;">Inside this comprehensive report, you’ll discover:</p><ul><li><p class="paragraph" style="text-align:left;">Which platforms are delivering the highest ROI in 2025</p></li><li><p class="paragraph" style="text-align:left;">Content formats driving the most engagement across industries</p></li><li><p class="paragraph" style="text-align:left;">How AI is transforming social content creation and analytics</p></li><li><p class="paragraph" style="text-align:left;">Tactical recommendations you can implement immediately</p></li></ul><p class="paragraph" style="text-align:left;"><b>Unlock the playbook—free when you subscribe to the </b><b><a class="link" href="https://blog.hubspot.com/masters-in-marketing-signup-socialtrends-0?utm_medium=email-media-newsletter&utm_source=masters-in-marketing&utm_campaign={{publication_alphanumeric_id}}&utm_content=incentivized-beehiiv&utm_term=Version-k&_bhiiv=opp_ed8b9522-31ff-4972-a7ab-26add1830014_fe732aa6&bhcl_id=0e8c2f93-05f1-431f-8161-da9aa4f8cf2c_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Masters in Marketing newsletter</a></b><b>.</b></p><p class="paragraph" style="text-align:left;">Get cutting-edge insights, twice a week, from the marketing leaders shaping the future.</p><p class="paragraph" style="text-align:left;"><a class="link" href="https://blog.hubspot.com/masters-in-marketing-signup-socialtrends-0?utm_medium=email-media-newsletter&utm_source=masters-in-marketing&utm_campaign={{publication_alphanumeric_id}}&utm_content=incentivized-beehiiv&utm_term=Version-k&_bhiiv=opp_ed8b9522-31ff-4972-a7ab-26add1830014_fe732aa6&bhcl_id=0e8c2f93-05f1-431f-8161-da9aa4f8cf2c_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Download The Report</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=2de3c927-d2dd-4500-9a40-966387b54788&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Traffic Source Fields in GA4 BigQuery Schema Demystified</title>
  <description></description>
  <link>https://bigquery.optizent.com/p/traffic-source-fields-in-ga4-bigquery-schema-demystified</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/traffic-source-fields-in-ga4-bigquery-schema-demystified</guid>
  <pubDate>Thu, 10 Apr 2025 23:45:15 +0000</pubDate>
  <atom:published>2025-04-10T23:45:15Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">When you export GA4 data to BigQuery, you will find several source, medium, and other data fields related to traffic.  In this post, I will help you understand what type of information in these fields so you can choose the right one for your data analysis.</p><p class="paragraph" style="text-align:left;">There are three columns of the record type that contain traffic-related information.  These fields are</p><ol start="1"><li><p class="paragraph" style="text-align:left;">traffic_source</p></li><li><p class="paragraph" style="text-align:left;">collected_traffic_source</p></li><li><p class="paragraph" style="text-align:left;">session_traffic_source_last_click</p></li></ol><p class="paragraph" style="text-align:left;">Let&#39;s look at each of these fields. </p><h2 class="heading" style="text-align:left;" id="traffic-source">traffic_source</h2><p class="paragraph" style="text-align:left;">This record field contains the details about the first traffic source that acquired the user.  These values do not change if the user interacts with subsequent campaigns. </p><p class="paragraph" style="text-align:left;">You can use this information to get the same information that you get in the User Acquisition report in GA4.</p><h3 class="heading" style="text-align:left;" id="collected-traffic-source"><b>collected_traffic_source</b></h3><p class="paragraph" style="text-align:left;">This field contains the traffic source data that is available with each event. For example, if a session first start the journey from Google search engine, then session_start and other events will contain this information. However, if, in the middle of the session, the user decides to go back to Bing and then find the link to come back to the session, any events following that will contain information related to Bing.</p><p class="paragraph" style="text-align:left;">This field can help you look at the traffic information at the event level so that you can analyze if users go back to another traffic source during their visits.</p><h3 class="heading" style="text-align:left;" id="session-traffic-source-last-click"><b>session_traffic_source_last_click</b></h3><p class="paragraph" style="text-align:left;">The session_traffic_source_last_click record contains the last-click attributed session traffic source data across Google ads and manual contexts, where available.</p><p class="paragraph" style="text-align:left;">This is the information that will match your Session acquisition report in GA4.</p><p class="paragraph" style="text-align:left;">If you want to see the entire list of data fields within these records, then see the post at <a class="link" href="https://www.optizent.com/blog/traffic-source-fields-in-ga4-bigquery-schema-demystified/?utm_source=beehiiv&utm_medium=email&utm_campaign=traffic-source-fields-in-ga4-bigquery-schema-demystified" target="_blank" rel="noopener noreferrer nofollow">https://www.optizent.com/blog/traffic-source-fields-in-ga4-bigquery-schema-demystified/</a></p><div class="embed"><a class="embed__url" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?utm_source=beehiiv&utm_medium=email&utm_campaign=traffic-source-fields-in-ga4-bigquery-schema-demystified" target="_blank"><div class="embed__content"><p class="embed__title"> ry & SQL Fundamentals with GA4 Data </p><p class="embed__description"> Get started with BigQuery & SQL using GA4 Data with this course. Learn SQL Fundamentals that you will need. </p><p class="embed__link"> academy.optizent.com/courses/bigquery-sql-fundamentals-ga4 </p></div><img class="embed__image embed__image--right" src="https://s3.amazonaws.com/contents.newzenler.com/597/courses/175680/data/thumb/l-6.jpg"/></a></div></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=110a9d04-a7d8-4d0f-b6e1-82756cf3c447&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>GA4 + BigQuery: 2 Videos to Help You Get Started with Confidence</title>
  <description></description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/98cdae5a-d30b-4c41-a017-1a08cd7e6bff/Optizent_Academy__2_.png" length="283502" type="image/png"/>
  <link>https://bigquery.optizent.com/p/ga4-bigquery-2-videos-to-help-you-get-started-with-confidence</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/ga4-bigquery-2-videos-to-help-you-get-started-with-confidence</guid>
  <pubDate>Sat, 14 Dec 2024 19:10:15 +0000</pubDate>
  <atom:published>2024-12-14T19:10:15Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:start;">The biggest challenge with learning anything new is the “getting started” part.</p><p class="paragraph" style="text-align:start;">If you want to learn BigQuery but haven’t yet haven’t yet started then I recommend that you watch the following two videos:</p><ul><li><p class="paragraph" style="text-align:start;"><a class="link" href="https://academy.optizent.com/f/getting-started-with-ga4-bigquery-step-by-step-guide?utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-bigquery-2-videos-to-help-you-get-started-with-confidence" target="_blank" rel="noopener noreferrer nofollow">Getting Started with BigQuery for GA4: A Step by Step Guide</a></p></li><li><p class="paragraph" style="text-align:start;"><a class="link" href="https://academy.optizent.com/f/making-sense-of-ga4-data-in-bigquery?utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-bigquery-2-videos-to-help-you-get-started-with-confidence" target="_blank" rel="noopener noreferrer nofollow">How to Make Sense of GA4 Data in BigQuery</a></p></li></ul><p class="paragraph" style="text-align:start;">Best regards,<br>Anil Batra<br>Optizent Academy</p><p class="paragraph" style="text-align:start;">P.S. Ready to take your learning to the next step? Check out this course: <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQNOW&utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-bigquery-2-videos-to-help-you-get-started-with-confidence" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQNOW</a></p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="run-irl-ads-as-easily-as-ppc">Run IRL ads as easily as PPC</h3><div class="image"><a class="image__link" href="https://www.AdQuick.com/?utm_campaign={{publication_alphanumeric_id}}&utm_source=beehiiv&_bhiiv=opp_e3379d4e-3c2b-49a8-b12d-feb9e760d92c_a0e96baa&bhcl_id=cb1fc9a9-f497-43ed-b19e-ef84e2516ab8_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="border-radius:0px 0px 0px 0px;border-style:solid;border-width:0px 0px 0px 0px;box-sizing:border-box;border-color:#E5E7EB;" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/269821fd-9742-48bb-9edf-816e43e8ccac/AdQuick_Newsletter_Hero_2.png?t=1718994504"/></a></div><p class="paragraph" style="text-align:left;"><a class="link" href="https://www.AdQuick.com/?utm_campaign={{publication_alphanumeric_id}}&utm_source=beehiiv&_bhiiv=opp_e3379d4e-3c2b-49a8-b12d-feb9e760d92c_a0e96baa&bhcl_id=cb1fc9a9-f497-43ed-b19e-ef84e2516ab8_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">AdQuick</a> unlocks the benefits of Out Of Home (OOH) advertising in a way no one else has. Approaching the problem with eyes to performance, created for marketers with the engineering excellence you’ve come to expect for the internet.</p><p class="paragraph" style="text-align:left;">Marketers agree OOH is one of the best ways for building brand awareness, reaching new customers, and reinforcing your brand message. It’s just been difficult to scale. But with AdQuick, you can plan, deploy and measure campaigns as easily as digital ads, making them a no-brainer to add to your team’s toolbox.</p><p class="paragraph" style="text-align:left;">You can learn more at <a class="link" href="https://www.AdQuick.com/?utm_campaign={{publication_alphanumeric_id}}&utm_source=beehiiv&_bhiiv=opp_e3379d4e-3c2b-49a8-b12d-feb9e760d92c_a0e96baa&bhcl_id=cb1fc9a9-f497-43ed-b19e-ef84e2516ab8_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">AdQuick.com</a></p><p class="paragraph" style="text-align:left;"></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=3b6e93de-a573-4a45-9ad6-a33fa1bec873&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>🔥 Last Chance: 40% off BigQuery for Marketers and Marketing Analytics Course </title>
  <description></description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/98cdae5a-d30b-4c41-a017-1a08cd7e6bff/Optizent_Academy__2_.png" length="283502" type="image/png"/>
  <link>https://bigquery.optizent.com/p/last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course</guid>
  <pubDate>Sun, 01 Dec 2024 19:03:47 +0000</pubDate>
  <atom:published>2024-12-01T19:03:47Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:start;">I wanted to let you know that only a day is left to enroll in my comprehensive <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">BigQuery for Marketers & Marketing Analysts course</a> for 40% off.</p><p class="paragraph" style="text-align:start;">👉 <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">Click here to learn more and enroll</a>.</p><p class="paragraph" style="text-align:start;">The course material includes the content I use to run full-day workshops at various conferences and organizations.</p><p class="paragraph" style="text-align:start;">Here is what you will learn in this course.</p><ul><li><p class="paragraph" style="text-align:left;"><b>Learn and Master SQL</b>: With simple, easy-to-understand lessons perfect for beginners and those who already know SQL. You will learn everything you need to know to use GA4 and other data sets.</p></li><li><p class="paragraph" style="text-align:left;"><b>Master BigQuery</b>: Learn how to work with BigQuery, Google’s powerful data warehouse, to run SQL queries on large datasets.</p></li><li><p class="paragraph" style="text-align:left;"><b>Work with GA4 Data</b>: Apply SQL and BigQuery to real-world GA4 data, helping you uncover deeper insights and make smarter business decisions.</p></li><li><p class="paragraph" style="text-align:left;"><b>Step-by-Step Learning</b>: No prior experience needed! We guide you through the entire process at a beginner’s pace.</p></li></ul><p class="paragraph" style="text-align:start;">🔑 <b>Why this course is perfect for you:</b></p><ul><li><p class="paragraph" style="text-align:left;"><b>Build Essential Data Skills</b>: SQL and BigQuery are critical tools for any data professional, and mastering them will set you apart in your career.</p></li><li><p class="paragraph" style="text-align:left;"><b>Analyze GA4 Data Like a Pro</b>: Learn how to combine the power of BigQuery with SQL to make the most of your GA4 data. </p></li><li><p class="paragraph" style="text-align:left;"><b>Huge Savings</b>: 40% off with Black Friday offer. This is the best price you will ever get on this course.</p></li></ul><p class="paragraph" style="text-align:start;"><b>Sign up now</b> and take the first step towards mastering SQL and BigQuery!</p><div class="embed"><a class="embed__url" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course" target="_blank"><div class="embed__content"><p class="embed__title"> BigQuery for Marketers and Marketing Analysts </p><p class="embed__description"> BigQuery for Marketers and Marketing Analysts. Step by step course that teaches you everything from scratch. </p><p class="embed__link"> academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER </p></div><img class="embed__image embed__image--right" src="https://s3.us-east-1.amazonaws.com/contents.newzenler.com/597/library/ptizent-cademy-25f8f3dfaa2ac0_lg.png"/></a></div><p class="paragraph" style="text-align:start;">Best regards,<br>Anil Batra<br>Optizent Academy</p><p class="paragraph" style="text-align:start;">P.S. This is the only course that gets you from not knowing what BigQuery and SQL is to mastering them. Don’t miss this opportunity, click here to enroll, <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=last-chance-40-off-bigquery-for-marketers-and-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER</a></p><hr class="content_break"><p class="paragraph" style="text-align:left;"></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=554bfe59-8d55-42db-af1c-5ea0b35c9d5f&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>40% off BigQuery for Marketing Analytics Course</title>
  <description>Master BigQuery and SQL knowledge is not only required for working with GA4 but will also open up doors for new career opportunities. </description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/98cdae5a-d30b-4c41-a017-1a08cd7e6bff/Optizent_Academy__2_.png" length="283502" type="image/png"/>
  <link>https://bigquery.optizent.com/p/40-off-bigquery-for-marketing-analytics-course</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/40-off-bigquery-for-marketing-analytics-course</guid>
  <pubDate>Thu, 28 Nov 2024 08:17:23 +0000</pubDate>
  <atom:published>2024-11-28T08:17:23Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:start;">This week, you can master BigQuery with my comprehensive <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=40-off-bigquery-for-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">BigQuery for Marketers & Marketing Analysts course</a> for a super low price.</p><p class="paragraph" style="text-align:start;"><a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=40-off-bigquery-for-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">Click here to learn more and enroll </a>.</p><p class="paragraph" style="text-align:start;">Here’s what you’ll learn:</p><ul><li><p class="paragraph" style="text-align:left;"><b>SQL Made Easy</b>: Master SQL with simple, easy-to-understand lessons perfect for beginners. You will learn everything you need to know to use GA4 and any other data sets.</p></li><li><p class="paragraph" style="text-align:left;"><b>Master BigQuery</b>: Learn how to work with BigQuery, Google’s powerful data warehouse, to run SQL queries on large datasets.</p></li><li><p class="paragraph" style="text-align:left;"><b>Work with GA4 Data</b>: Apply SQL and BigQuery to real-world GA4 data, helping you uncover deeper insights and make smarter business decisions.</p></li><li><p class="paragraph" style="text-align:left;"><b>Step-by-Step Learning</b>: No prior experience needed! We guide you through the entire process at a beginner’s pace.</p></li></ul><p class="paragraph" style="text-align:start;">🔑 <b>Why this course is perfect for you:</b></p><ul><li><p class="paragraph" style="text-align:left;"><b>Build Essential Data Skills</b>: SQL and BigQuery are critical tools for any data professional, and mastering them will set you apart in your career.</p></li><li><p class="paragraph" style="text-align:left;"><b>Analyze GA4 Data Like a Pro</b>: Learn how to combine the power of BigQuery with SQL to make the most of your GA4 data.</p></li><li><p class="paragraph" style="text-align:left;"><b>Huge Savings</b>: 40% off with Black Friday offer.</p></li></ul><p class="paragraph" style="text-align:start;"><b>Sign up now</b> and take the first step towards mastering SQL and BigQuery!</p><div class="embed"><a class="embed__url" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=40-off-bigquery-for-marketing-analytics-course" target="_blank"><div class="embed__content"><p class="embed__title"> BigQuery for Marketers and Marketing Analysts </p><p class="embed__description"> BigQuery for Marketers and Marketing Analysts. Step by step course that teaches you everything from scratch. </p><p class="embed__link"> academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER </p></div><img class="embed__image embed__image--right" src="https://s3.us-east-1.amazonaws.com/contents.newzenler.com/597/library/ptizent-cademy-25f8f3dfaa2ac0_lg.png"/></a></div><p class="paragraph" style="text-align:start;">Best regards,<br>Anil Batra<br>Optizent Academy</p><p class="paragraph" style="text-align:start;">P.S. This is the only course that gets you from not knowing what BigQuery and SQL is to mastering them. Don’t miss this opportunity, click here to enroll, <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER&utm_source=beehiiv&utm_medium=email&utm_campaign=40-off-bigquery-for-marketing-analytics-course" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?coupon=BQBFOFFER</a></p><hr class="content_break"><p class="paragraph" style="text-align:left;"></p><h3 class="heading" style="text-align:left;" id="seeking-impartial-news-meet-1440">Seeking impartial news? Meet 1440.</h3><p class="paragraph" style="text-align:left;">Every day, 3.5 million readers turn to <a class="link" href="https://l.join1440.com/bh?utm_source=beehiiv&utm_medium=cpc&utm_campaign={{publication_name_param}}_{{publication_alphanumeric_id}}&utm_content=prospecting_impartial&_bhiiv=opp_a9b74de2-ee69-4638-8ee9-eae8b53ac819_1b75ca79&bhcl_id=1c5875af-7b06-4f55-a797-e77e2837777d_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">1440</a> for their factual news. We sift through 100+ sources to bring you a complete summary of politics, global events, business, and culture, all in a brief 5-minute email. Enjoy an impartial news experience.</p><p class="paragraph" style="text-align:left;"><a class="link" href="https://l.join1440.com/bh?utm_source=beehiiv&utm_medium=cpc&utm_campaign={{publication_name_param}}_{{publication_alphanumeric_id}}&utm_content=prospecting_impartial&_bhiiv=opp_a9b74de2-ee69-4638-8ee9-eae8b53ac819_1b75ca79&bhcl_id=1c5875af-7b06-4f55-a797-e77e2837777d_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Join for free today!</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=09bc9336-d26a-4cd5-b8f3-5e1e1f6de3a4&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Create Looker Studio Reports with GA4 Data in BigQuery</title>
  <description>Master GA4 BigQuery with Bite-sized lessons.</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/dd01e7ec-a2ef-4480-ad0a-70206b62d6b5/bq-table-selector.JPG" length="61095" type="image/jpeg"/>
  <link>https://bigquery.optizent.com/p/create-looker-studio-reports-with-ga4-data-in-bigquery</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/create-looker-studio-reports-with-ga4-data-in-bigquery</guid>
  <pubDate>Sat, 19 Oct 2024 19:25:15 +0000</pubDate>
  <atom:published>2024-10-19T19:25:15Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">In this post I will show how you can use the <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALSYT&utm_source=beehiiv&utm_medium=email&utm_campaign=create-looker-studio-reports-with-ga4-data-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">GA4 data in BigQuery</a> to build reports in <a class="link" href="https://academy.optizent.com/courses/looker-studio?utm_source=beehiiv&utm_medium=email&utm_campaign=create-looker-studio-reports-with-ga4-data-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">Looker Studio</a>.</p><p class="paragraph" style="text-align:left;">To get started, make sure you have integrated GA4 and BigQuery and have a Looker Studio account ready.</p><p class="paragraph" style="text-align:left;">Here are the steps</p><ol start="1"><li><p class="paragraph" style="text-align:left;">Go to Looker Studio and click on &quot;Blank Report&quot; to create a new report.</p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/look-studio-blank-report.jpg"/></div></li><li><p class="paragraph" style="text-align:left;">You will be promoted to &quot;Add data to report&quot;.</p></li><li><p class="paragraph" style="text-align:left;">Select BigQuery from the list of connectors. If you don&#39;t see BigQuery in the list then use the search bar above to search for BigQuery connector.</p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/look-studio-big-query-data-source.jpg"/></div></li><li><p class="paragraph" style="text-align:left;">Pick the table that you want to use for your report.  You can only pick one table from the list. To add all 4 GA4 tables you will have to make 4 data connections. Let&#39;s first connect with daily events table.</p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/bq-table-selector-1024x490.jpg"/></div></li><li><p class="paragraph" style="text-align:left;">Next pick the Configuration template, there is only one available for event table called &quot;Event&quot;. The template provides you the data in a format that you can easily use in Looker Studio. I assume there will be more templates that will be released in the future.  For some of the tables, you might not see an option to pick a template. In that case you will just pick the table and go to Step 8.</p></li><li><p class="paragraph" style="text-align:left;">Next click on the &quot;Add&quot; button in the top right bottom.</p></li><li><p class="paragraph" style="text-align:left;">You might be promoted with a message confirming that you are adding a data to the report. Click on &quot;ADD TO REPORT&quot; button.</p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/data-add-confirmation.jpg"/></div></li><li><p class="paragraph" style="text-align:left;">Now the data sources is added. You will see that Looker Studio automatically creates one table chart for you.</p></li><li><p class="paragraph" style="text-align:left;">Go ahead and modify the looker studio any way you want. You will see all your dimensions and metrics available in the dimensions and metrics pickers.</p></li><li><p class="paragraph" style="text-align:left;">Not the template that we picked in the step above will help you get the names of the paramater, counts of users etc.</p></li><li><p class="paragraph" style="text-align:left;">To add additional tables from BigQuery (or any other data source), click on &quot;Resource&quot; menu option on top.</p><p class="paragraph" style="text-align:left;"></p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/manage-added-data-source.jpg"/></div><p class="paragraph" style="text-align:left;"></p></li><li><p class="paragraph" style="text-align:left;">Select &quot;Manage added data sources&quot;. This will show you all the data sources that you have added in your report.</p></li><li><p class="paragraph" style="text-align:left;">Click on &quot;+ ADD A DATA SOURCE&quot; and you will be presented with the same screen that you saw in Step 6 above.</p><p class="paragraph" style="text-align:left;"></p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/10/add-a-data-source.jpg"/></div><p class="paragraph" style="text-align:left;"></p></li></ol><p class="paragraph" style="text-align:left;">Now you are ready to build Looker Studio reports using GA4 data in BigQuery.</p><p class="paragraph" style="text-align:left;">If you organization is data driven then the default template provided for tables is likely not going to be enough for your reporting needs.  In that case you will have to create databases views and table to meet your need. You will be able to connect with those tables and views the same way we did above.</p><p class="paragraph" style="text-align:left;">If you need help with GA4, BigQuery or Looker Studio, reach out to us at <a class="link" href="mailto:support@optizent.com" target="_blank" rel="noopener noreferrer nofollow">support@optizent.com</a> or  fill the <a class="link" href="https://www.optizent.com/contact?utm_source=beehiiv&utm_medium=email&utm_campaign=create-looker-studio-reports-with-ga4-data-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">contact us form</a>.</p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="join-in-january-grow-all-year">Join in January, grow all year</h3><div class="image"><a class="image__link" href="https://www.honeybook.com/lp/2025-january-jumpstart?utm_source=beehiiv_MSP&utm_medium=partner&utm_campaign=janjumpstart_2025_{{publication_alphanumeric_id}}&_bhiiv=opp_9ca10471-a71e-4f0d-b224-965f9ce431e0_d65b9051&bhcl_id=90e00bec-4b51-4ef1-ad55-730c1863b154_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/0a965221-d7cf-4d8f-bfc3-fc4f98b20949/JanuaryJumpstart_BeehiivVA_1200x600.png?t=1735931016"/></a></div><p class="paragraph" style="text-align:left;">Take on 2025 with the tools to manage leads, clients, and projects like a pro—and a chance to <a class="link" href="https://www.honeybook.com/lp/2025-january-jumpstart?utm_source=beehiiv_MSP&utm_medium=partner&utm_campaign=janjumpstart_2025_{{publication_alphanumeric_id}}&_bhiiv=opp_9ca10471-a71e-4f0d-b224-965f9ce431e0_d65b9051&bhcl_id=90e00bec-4b51-4ef1-ad55-730c1863b154_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">win a $10,000 prize package</a> for your business.</p><p class="paragraph" style="text-align:left;"><a class="link" href="https://www.honeybook.com/lp/2025-january-jumpstart?utm_source=beehiiv_MSP&utm_medium=partner&utm_campaign=janjumpstart_2025_{{publication_alphanumeric_id}}&_bhiiv=opp_9ca10471-a71e-4f0d-b224-965f9ce431e0_d65b9051&bhcl_id=90e00bec-4b51-4ef1-ad55-730c1863b154_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Start for free for a chance to win</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=a759b41a-bf8f-4f1b-824d-ead6458204f0&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>How to Use Google AI Model, Gemini in BigQuery</title>
  <description>Use the power of AI to generate SQL queries using natural language</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/6a69a9ca-cec8-48d2-8ca4-64c58e41eb00/sql-generation-tool2.JPG" length="27990" type="image/jpeg"/>
  <link>https://bigquery.optizent.com/p/how-to-use-google-ai-model-gemini-in-bigquery</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/how-to-use-google-ai-model-gemini-in-bigquery</guid>
  <pubDate>Fri, 11 Oct 2024 18:57:13 +0000</pubDate>
  <atom:published>2024-10-11T18:57:13Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">In the previous post, I walked you through the<a class="link" href="https://www.optizent.com/blog/using-google-ai-model-gemini-in-bigquery-to-generate-sql-queries/?utm_source=beehiiv&utm_medium=email&utm_campaign=how-to-use-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow"> steps of enabling Gemini, a Google AI model, in BigQuery</a>. In this of the post I will show you how to use AI in BigQuery.</p><p class="paragraph" style="text-align:left;">After Gemini, Google’s AI model, is enabled in BigQuery, click on the “* Pencil” icon on the right hand side of console window. It will open up a dropdown with a list of all available Gemini features and a checkmark next to the ones that are enabled.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/4d0b1380-eee0-483e-86a0-f64d251e9158/gemini-enabled.JPG?t=1728592953"/></div><p class="paragraph" style="text-align:left;">Clicking on the feature will allow you to disable it or enable it back again if you need it.</p><h2 class="heading" style="text-align:left;" id="what-do-these-features-do"><b>What Do These Features Do</b></h2><p class="paragraph" style="text-align:left;"><b>Auto-Generation</b></p><p class="paragraph" style="text-align:left;">With the features, you can write a natural language comment in the BigQuery query editor to generate a SQL query. </p><p class="paragraph" style="text-align:left;">Here are the step to use this feature</p><ul><li><p class="paragraph" style="text-align:left;">Type # (hashtag ) or -- (two dashes) to start the prompt.</p></li><li><p class="paragraph" style="text-align:left;">Next type your prompt</p></li><li><p class="paragraph" style="text-align:left;">Wait for Gemini to process your prompt and write the SQL</p></li><li><p class="paragraph" style="text-align:left;">Press tab to accept the SQL</p></li></ul><p class="paragraph" style="text-align:left;">In the screen below, is an example of a prompt and the SQL that Gemini wrote.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/260727ed-4588-4d75-ac2c-f37633f3f2b6/code-by-gemini-auto-generate.JPG?t=1728623926"/></div><p class="paragraph" style="text-align:left;"><b>SQL generation tool</b></p><p class="paragraph" style="text-align:left;">With this feature, you can enter natural language text in a tool to generate a SQL query, with options to refine query results, choose table sources, and compare results.</p><p class="paragraph" style="text-align:left;">To use this feature, click on the *Pencil icon that appears in the query window (see the image below). You can also right click in the query window to open the SQL Generation tool.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/8093d9ee-1311-4cd6-b4c4-acdb012d9449/sql-generation-tool.JPG?t=1728625173"/></div><p class="paragraph" style="text-align:left;">Clicking on it will open the SQL Generation tool where you can write your prompt to generate SQL.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/6a69a9ca-cec8-48d2-8ca4-64c58e41eb00/sql-generation-tool2.JPG?t=1728625396"/></div><p class="paragraph" style="text-align:left;">After you write your prompt and click “GENERATE” button, you will see the following window with SQL. You can then refine the SQL further or accept it as is. I will write more about this in the future posts.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/40d10ae3-3d07-4926-877f-90bb9df384c3/sql-generation-tool3.JPG?t=1728625497"/></div><p class="paragraph" style="text-align:left;"><b>Explanation</b></p><p class="paragraph" style="text-align:left;">With this feature, you can prompt Gemini in to explain a SQL query in natural language. I will write more about this in the future posts. For now lets just see how it works.</p><p class="paragraph" style="text-align:left;">Select SQL in the query window and right click on “Explain current selection”. This will open a panel explaining the SQL that you selected.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/03838934-5730-462f-ac4c-93c4d2908b17/sql-explaination-gemini.JPG?t=1728625835"/></div><p class="paragraph" style="text-align:left;">So that’s all for now. I hope Google AI in BigQuery helps you write better and fast SQL code. <a class="link" href="https://bigquery.optizent.com/upgrade?utm_source=beehiiv&utm_medium=email&utm_campaign=how-to-use-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">Click here to upgrade to support this newsletter and get advanced content.</a></p><hr class="content_break"><p class="paragraph" style="text-align:left;">Note: If you haven’t yet started with BigQuery then don’t be left behind. Here is a course to get you started, <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALSYT&utm_source=beehiiv&utm_medium=email&utm_campaign=how-to-use-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALSYT</a></p><p class="paragraph" style="text-align:left;">If have some background in BigQuery (have been following this newsletter series) then checkout my BigQuery for Marketers and Marketing Analytics course. <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=how-to-use-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts</a> (Only BigQuery course designed for non-technical folks).</p><h2 class="heading" style="text-align:start;" id="need-big-query-and-ga-4-help">Need BigQuery and GA4 help?</h2><p class="paragraph" style="text-align:start;">Contact us at <a class="link" href="mailto:support@optizent.com" target="_blank" rel="noopener noreferrer nofollow">support@optizent.com</a> or fill the <a class="link" href="https://www.optizent.com/contact/?utm_source=beehiiv&utm_medium=email&utm_campaign=how-to-use-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow" style="color: #4c99ba">contact us form</a>.</p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="use-ai-as-your-personal-assistant">Use AI as Your Personal Assistant</h3><div class="image"><a class="image__link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_5d8c7818-3177-463c-b433-02dc05275fed_928b37de&bhcl_id=2c940a9a-9e19-4af9-9014-460f48446888_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="border-radius:0px 0px 0px 0px;border-style:solid;border-width:0px 0px 0px 0px;box-sizing:border-box;border-color:#E5E7EB;" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/17c776c8-8aad-45d6-aba9-71a2e51c315b/AI_Task_Delegation_2.png?t=1718208627"/></a></div><p class="paragraph" style="text-align:left;">Ready to embrace a new era of task delegation? </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_5d8c7818-3177-463c-b433-02dc05275fed_928b37de&bhcl_id=2c940a9a-9e19-4af9-9014-460f48446888_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">HubSpot’s</a> highly anticipated AI Task Delegation Playbook is your key to supercharging your productivity and saving precious time.</p><p class="paragraph" style="text-align:left;">Learn how to integrate AI technology into your processes, allowing you to optimize resource allocation and maximize output with precision and ease. </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_5d8c7818-3177-463c-b433-02dc05275fed_928b37de&bhcl_id=2c940a9a-9e19-4af9-9014-460f48446888_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Download Now!</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=eb354d30-1043-4df8-88e0-455f3f3ec036&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Enable Google AI Model, Gemini in BigQuery </title>
  <description>Use the power of AI to generate SQL queries using natural language</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/504ac0f7-a649-49ea-a6db-a3724fd6430e/enable-gemini.JPG" length="29595" type="image/jpeg"/>
  <link>https://bigquery.optizent.com/p/enable-google-ai-model-gemini-in-bigquery</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/enable-google-ai-model-gemini-in-bigquery</guid>
  <pubDate>Thu, 26 Sep 2024 17:38:34 +0000</pubDate>
  <atom:published>2024-09-26T17:38:34Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Gemini is a Google AI model that you can now use in BigQuery to assist you in writing SQL queries for any data including GA4.</p><p class="paragraph" style="text-align:start;">It is a great tool for both beginners and experienced analysts. Beginners can learn SQL with help of Gemini while experienced folks can use it to expedite the SQL writing.</p><p class="paragraph" style="text-align:start;">Gemini is not enabled by default in your BigQuery console. Follow the steps below to enable it.</p><hr class="content_break"><p class="paragraph" style="text-align:start;">Note: If you haven’t yet started with BigQuery then don’t be left behind. Here is a course to get you started, <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALSYT&utm_source=beehiiv&utm_medium=email&utm_campaign=enable-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALSYT</a></p><hr class="content_break"><h2 class="heading" style="text-align:start;" id="how-to-enable-gemini-in-big-query">How to Enable Gemini in BigQuery</h2><ol start="1"><li><p class="paragraph" style="text-align:left;">Enable necessary APIs.</p></li><li><p class="paragraph" style="text-align:left;">Grant required Identity and Access Management (IAM) roles.</p></li><li><p class="paragraph" style="text-align:left;">Turn on Gemini in BigQuery features in the Google Cloud console.</p></li></ol><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/09/enable-gemini.jpg"/></div><p class="paragraph" style="text-align:start;"><b>Enable Gemini APIs</b></p><p class="paragraph" style="text-align:start;">Note: You will need to be either an administrator or project owner with the <b><a class="link" href="https://serviceusage.services?utm_source=beehiiv&utm_medium=email&utm_campaign=enable-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow">serviceusage.services</a></b><b>.enable</b> permission to perform the following steps.</p><ol start="1"><li><p class="paragraph" style="text-align:left;"><a class="link" href="https://console.cloud.google.com/marketplace/product/google/cloudaicompanion.googleapis.com?utm_source=beehiiv&utm_medium=email&utm_campaign=enable-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow" style="color: #4c99ba">Go to Gemini for Google Cloud page</a>.</p></li><li><p class="paragraph" style="text-align:left;">Click <b>Enable</b>.</p></li><li><p class="paragraph" style="text-align:left;">You will see the status as Enabled and now Gemini is available in BigQuery in the selected Google Cloud project.</p></li></ol><h3 class="heading" style="text-align:start;" id="iam-permissions"><b>IAM Permissions</b></h3><ol start="1"><li><p class="paragraph" style="text-align:left;">Go to the <a class="link" href="https://console.cloud.google.com/projectselector/iam-admin/iam?supportedpurview=&utm_source=beehiiv&utm_medium=email&utm_campaign=enable-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow" style="color: #4c99ba">IAM & Admin page.</a></p></li><li><p class="paragraph" style="text-align:left;">Click on <b>View by principals</b>.</p></li><li><p class="paragraph" style="text-align:left;">In the <b>Principal</b> column, find the user (principal) for which you want to enable access to Gemini in BigQuery</p></li><li><p class="paragraph" style="text-align:left;">Click edit <b>Edit principal</b> in that row.</p></li><li><p class="paragraph" style="text-align:left;">In the <b>Edit access</b> pane, click add <b>Add another role</b>.</p></li><li><p class="paragraph" style="text-align:left;">In the <b>Select a role</b> list, select <b>Gemini for Google Cloud User</b>.</p></li><li><p class="paragraph" style="text-align:left;">This will grant the Cloud AI Companion User IAM role (roles/cloudaicompanion.user) to the user.</p></li></ol><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/09/view-by-principal-1024x415.jpg"/></div><h3 class="heading" style="text-align:start;" id="turn-on-big-query-features-in-your-"><b>Turn on BigQuery Features in Your Project</b></h3><ol start="1"><li><p class="paragraph" style="text-align:left;">In the Google Cloud console, on the project selector page, select the Google Cloud project.</p></li><li><p class="paragraph" style="text-align:left;">In the Google Cloud console, go to the <b>BigQuery</b> page.</p></li><li><p class="paragraph" style="text-align:left;">In the toolbar, click the pen with sparks (<b>Gemini)</b> drop-down icon.<br></p><div class="image"><img alt="" class="image__image" style="" src="https://www.optizent.com/blog/wp-content/uploads/2024/09/gemini-bigquery-console.jpg"/></div></li><li><p class="paragraph" style="text-align:left;">In the dropdown list of features, select the features that you want to enable in your project. I have enabled all the features (see the screenshot above):</p><ul><li><p class="paragraph" style="text-align:left;">Gemini in SQL query:</p><ul><li><p class="paragraph" style="text-align:left;"><b>Auto-generation</b>: Allows you to use Gemini in BigQuery to generate a SQL query using natural language prompts.</p></li><li><p class="paragraph" style="text-align:left;"><b>SQL generation tool</b>: Same as above to generate a SQL query, with options to refine query results, choose table sources, and compare results.</p></li><li><p class="paragraph" style="text-align:left;"><b>Explanation</b>: This help you use Gemini to explain the SQL query in natural language so that you can easily understand it.</p></li></ul></li><li><p class="paragraph" style="text-align:left;">Gemini in Python notebook:</p><ul><li><p class="paragraph" style="text-align:left;"><b>Code completion</b> (Preview): Use Gemini to contextually appropriate recommendations based on what you already have in the notebook.</p></li><li><p class="paragraph" style="text-align:left;"><b>Code generation</b>: Use Gemini to generate Python code using natural language.</p></li></ul></li></ul></li></ol><p class="paragraph" style="text-align:start;">Now Gemini is enabled and ready to be used. In the next post, I will show how to use Gemini to generate SQL.</p><h2 class="heading" style="text-align:start;" id="need-big-query-and-ga-4-help">Need BigQuery and GA4 help?</h2><p class="paragraph" style="text-align:start;">Contact us at <a class="link" href="mailto:support@optizent.com" target="_blank" rel="noopener noreferrer nofollow">support@optizent.com</a> or fill the <a class="link" href="https://www.optizent.com/contact/?utm_source=beehiiv&utm_medium=email&utm_campaign=enable-google-ai-model-gemini-in-bigquery" target="_blank" rel="noopener noreferrer nofollow" style="color: #4c99ba">contact us form</a>.</p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="use-ai-as-your-personal-assistant">Use AI as Your Personal Assistant</h3><div class="image"><a class="image__link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_18e1bf8c-c16b-4f61-a0a0-19708dd542f8_928b37de&bhcl_id=4861ba5d-e47b-46d1-a864-72ebc151df43_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="border-radius:0px 0px 0px 0px;border-style:solid;border-width:0px 0px 0px 0px;box-sizing:border-box;border-color:#E5E7EB;" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/17c776c8-8aad-45d6-aba9-71a2e51c315b/AI_Task_Delegation_2.png?t=1718208627"/></a></div><p class="paragraph" style="text-align:left;">Ready to embrace a new era of task delegation? </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_18e1bf8c-c16b-4f61-a0a0-19708dd542f8_928b37de&bhcl_id=4861ba5d-e47b-46d1-a864-72ebc151df43_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">HubSpot’s</a> highly anticipated AI Task Delegation Playbook is your key to supercharging your productivity and saving precious time.</p><p class="paragraph" style="text-align:left;">Learn how to integrate AI technology into your processes, allowing you to optimize resource allocation and maximize output with precision and ease. </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_18e1bf8c-c16b-4f61-a0a0-19708dd542f8_928b37de&bhcl_id=4861ba5d-e47b-46d1-a864-72ebc151df43_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Download Now!</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=c5111658-c323-43bb-bea6-2783da0a7d44&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>85% off BigQuery and SQL with GA4 Fundamentals Course</title>
  <description></description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/053c6cd7-7e88-4f45-8918-73416630d535/Getting_Started_with_BigQuery__1_.png" length="367627" type="image/png"/>
  <link>https://bigquery.optizent.com/p/bigquery-sql-fundamentals-ga4-course</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/bigquery-sql-fundamentals-ga4-course</guid>
  <pubDate>Thu, 19 Sep 2024 18:11:29 +0000</pubDate>
  <atom:published>2024-09-19T18:11:29Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Are you ready to dive into the world of data analysis? </p><p class="paragraph" style="text-align:start;">I am excited to launch a new <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALS&utm_source=beehiiv&utm_medium=email&utm_campaign=85-off-bigquery-and-sql-with-ga4-fundamentals-course" target="_blank" rel="noopener noreferrer nofollow"><b>Beginner-Level SQL and BigQuery Course</b></a>, designed to teach you the fundamentals of <b>SQL</b> and how to use <b>BigQuery</b> with <b>Google Analytics 4 (GA4) data</b>!</p><p class="paragraph" style="text-align:start;">If you enroll during this launch period then you can get the course for only <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALS&utm_source=beehiiv&utm_medium=email&utm_campaign=85-off-bigquery-and-sql-with-ga4-fundamentals-course" target="_blank" rel="noopener noreferrer nofollow" style="color: #3397ff">$14.55 (85% off the regular price)</a>.</p><p class="paragraph" style="text-align:start;">Here’s what you’ll learn:</p><ul><li><p class="paragraph" style="text-align:left;"><b>SQL Fundamentals Made Easy</b>: Master the basics of SQL with simple, easy-to-understand lessons perfect for beginners.</p></li><li><p class="paragraph" style="text-align:left;"><b>Introduction to BigQuery</b>: Learn how to work with BigQuery, Google’s powerful data warehouse, to run SQL queries on large datasets.</p></li><li><p class="paragraph" style="text-align:left;"><b>Work with GA4 Data</b>: Apply SQL and BigQuery to real-world GA4 data, helping you uncover deeper insights and make smarter business decisions.</p></li><li><p class="paragraph" style="text-align:left;"><b>Step-by-Step Learning</b>: No prior experience needed! We guide you through the entire process at a beginner’s pace.</p></li><li><p class="paragraph" style="text-align:left;"><b>Lifetime Access</b>: Study at your convenience and revisit the material whenever you want.</p></li></ul><p class="paragraph" style="text-align:start;">🔑 <b>Why this course is perfect for you:</b></p><ul><li><p class="paragraph" style="text-align:left;"><b>Build Essential Data Skills</b>: SQL and BigQuery are critical tools for any data professional, and mastering them will set you apart in your career.</p></li><li><p class="paragraph" style="text-align:left;"><b>Analyze GA4 Data Like a Pro</b>: Learn how to combine the power of BigQuery with SQL to make the most of your GA4 data.</p></li><li><p class="paragraph" style="text-align:left;"><b>Huge Savings</b>: Grab this course for just <b>15% of the original price</b> with our limited-time offer!</p></li></ul><p class="paragraph" style="text-align:start;"><b>Sign up now</b> and take the first step towards mastering SQL and BigQuery!</p><p class="paragraph" style="text-align:start;">Sign up at - &gt; <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALS&utm_source=beehiiv&utm_medium=email&utm_campaign=85-off-bigquery-and-sql-with-ga4-fundamentals-course" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4</a> - <i>Only available for the next 24 hours, so enroll now. (Use Coupon Code: BQFUNDAMENTALS)</i></p><p class="paragraph" style="text-align:start;">If you have any questions or need more details, feel free to reply to this email. We can’t wait to help you on your learning journey!</p><p class="paragraph" style="text-align:start;">Best regards,<br>Anil Batra<br>Optizent Academy</p><p class="paragraph" style="text-align:start;">P.S. <a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALS&utm_source=beehiiv&utm_medium=email&utm_campaign=85-off-bigquery-and-sql-with-ga4-fundamentals-course" target="_blank" rel="noopener noreferrer nofollow" style="color: #3397ff">With an </a><b><a class="link" href="https://academy.optizent.com/courses/bigquery-sql-fundamentals-ga4?coupon=BQFUNDAMENTALS&utm_source=beehiiv&utm_medium=email&utm_campaign=85-off-bigquery-and-sql-with-ga4-fundamentals-course" target="_blank" rel="noopener noreferrer nofollow" style="color: #3397ff">85% discount</a></b>, this is the perfect time to start learning SQL and BigQuery. Don’t miss out – enroll today!</p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=7aeeca32-4a32-40ff-bff9-dfd59698ee29&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Upgrade your BigQuery skills </title>
  <description>Master GA4 Data Analysis in BigQuery and learn SQL</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/23075574-1166-4a5c-906d-05848336aaa1/Copy_of_Copy_of_Copy_of_Don_t_Like_GA4.png" length="90354" type="image/png"/>
  <link>https://bigquery.optizent.com/p/upgrade-bigquery-skills-5bb4</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/upgrade-bigquery-skills-5bb4</guid>
  <pubDate>Tue, 30 Jul 2024 06:55:33 +0000</pubDate>
  <atom:published>2024-07-30T06:55:33Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><h2 class="heading" style="text-align:left;" id="upgrade-your-big-query-and-sql-skil">Upgrade your BigQuery and SQL Skills</h2><p class="paragraph" style="text-align:left;">As a founding member of this BigQuery newsletter, you have the opportunity to lock in the <a class="link" href="https://bigquery.beehiiv.com/upgrade?utm_source=beehiiv&utm_medium=email&utm_campaign=upgrade-your-bigquery-skills" target="_blank" rel="noopener noreferrer nofollow">premium version of the newslette</a>r for a very low price. This price is about to go up, this might be your last chance to upgrade for a low price.</p><p class="paragraph" style="text-align:left;">SQL and BigQuery skills will open a lot of new job opportunities in various fields such as Data Analytics, Data Engineering, and Marketing Analytics to name a few.</p><p class="paragraph" style="text-align:left;"><b>SQL is a skill that I learned 30 years ago to find my first job and it still pays me.</b> </p><p class="paragraph" style="text-align:left;">The premium version provides:</p><ol start="1"><li><p class="paragraph" style="text-align:left;">Advanced lessons and content.</p></li><li><p class="paragraph" style="text-align:left;">SQL scripts to recreate GA4 metrics and reports in BigQuery</p></li><li><p class="paragraph" style="text-align:left;">Lessons to leverage all types of data, not just GA4, in BigQuery</p></li><li><p class="paragraph" style="text-align:left;">The SQL queries that you can use right away to help you solve business problems and shine in front of your boss. These queries will save you lots of hours and money. We charge our clients hundreds and thousands of dollars to write these SQL Queries. and you are getting them for just a few dollars. </p></li></ol><p class="paragraph" style="text-align:left;">It is time for you to upgrade your skills. You have a lot to gain by adding this skill to your resume.</p><p class="paragraph" style="text-align:left;">Click below to become a premium member so that you never have to worry about learning SQL and BigQuery.</p><p class="paragraph" style="text-align:left;">If you have any questions then don’t hesitate to reach out to me at <a class="link" href="mailto:anil@optizent.com" target="_blank" rel="noopener noreferrer nofollow">anil@optizent.com</a></p><p class="paragraph" style="text-align:left;">Upgrade by clicking on the button below or going to <a class="link" href="https://bigquery.beehiiv.com/upgrade?utm_source=beehiiv&utm_medium=email&utm_campaign=upgrade-your-bigquery-skills" target="_blank" rel="noopener noreferrer nofollow">https://bigquery.beehiiv.com/upgrade</a></p><div class="paywall"><hr class="paywall__break"/><div class="paywall__content"><h2 class="paywall__header"> Subscribe to Premium to read the rest. </h2><p class="paywall__description"> Become a paying subscriber of Premium to get access to this post and other subscriber-only content. </p><p class="paywall__links"><a class="paywall__upgrade_link" href="https://bigquery.optizent.com/upgrade?utm_source=beehiiv&utm_medium=email&utm_campaign=upgrade-your-bigquery-skills">Upgrade</a> Translation missing: en.app.shared.conjuction.or <a class="paywall__login_link" href="https://bigquery.optizent.com/login?utm_source=beehiiv&utm_medium=email&utm_campaign=upgrade-your-bigquery-skills">Sign In</a></p><div class="paywall__upsell"><div class="paywall__upsell_header"><h3> A subscription gets you </h3></div><ul class="paywall__upsell_features"><li class="paywall__upsell_feature"> Advanced Content </li><li class="paywall__upsell_feature"> Readymade SQL Scripts </li></ul></div></div></div></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=cae6d2e5-3829-4050-abdf-29842287a965&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>BigQuery Table Explorer</title>
  <description>BigQuery Console Feature to Help You Generate SQL Queries</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/149836c7-79e7-4fd5-a72f-700503801f35/table-exploer-final.JPG" length="86842" type="image/jpeg"/>
  <link>https://bigquery.optizent.com/p/bigquery-table-explorer</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/bigquery-table-explorer</guid>
  <pubDate>Fri, 26 Jul 2024 15:14:24 +0000</pubDate>
  <atom:published>2024-07-26T15:14:24Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">BigQuery Table Explorer provides a way for you to explore the data contained in various fields (columns) of a table and also create no-code SQL queries based on your selection of the fields.</p><p class="paragraph" style="text-align:left;">This feature is great for both beginners who are learning SQL and getting familiar with <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=bigquery-table-explorer" target="_blank" rel="noopener noreferrer nofollow">BigQuery, SQL and the GA4 </a>data, as well as for those who are experts and need to quickly review the distinct values in a a column.</p><p class="paragraph" style="text-align:left;">Below are the step to use Table Explorer feature in BigQuery. </p><p class="paragraph" style="text-align:left;">In the Google Cloud console, go to the project that contains the data that you want to explore.</p><p class="paragraph" style="text-align:left;">In the Explorer pane, select the table that you want to explore and create the query for.</p><p class="paragraph" style="text-align:left;">This opens up table schema. You can select the columns from the schema or click the “TABLE EXPLORER” tab, and then click “SELECT FIELDS” button.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/301dfe2a-24d4-454d-9374-719912e775ea/table-explorer-tables.JPG?t=1721956961"/><div class="image__source"><span class="image__source_text"><p>Table Schema view</p></span></div></div><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/1302ac20-c91b-476a-b367-30d8b5e1ccd6/table-explorer-tab.JPG?t=1722006410"/><div class="image__source"><span class="image__source_text"><p>Table Explorer Tab</p></span></div></div><p class="paragraph" style="text-align:left;">In the Select fields pane, you can select up to 10 table fields to explore. </p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/7c4dc353-8c0f-49b0-afeb-111e4a593e28/select-fields.JPG?t=1722006466"/></div><p class="paragraph" style="text-align:left;"></p><p class="paragraph" style="text-align:left;">Once you select the columns click on “EXPLORE” button on top (if you go from the Schema tab) or click “Save” button when you from “TABLE EXPLORER” tab.</p><p class="paragraph" style="text-align:left;">This will now show you cards for each column that you selected and SQL Query based on your selection.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/d5242c75-72e0-428c-b108-92400e61ac30/table-explore.JPG?t=1721956878"/></div><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/cebaa466-8293-47d1-95aa-2167a7889094/explore-sql.JPG?t=1721957028"/></div><p class="paragraph" style="text-align:left;">You can copy this query into a new query in query editor, or apply the query in table explorer. </p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/149836c7-79e7-4fd5-a72f-700503801f35/table-exploer-final.JPG?t=1721957139"/></div><h2 class="heading" style="text-align:left;" id="video-of-table-explorer">Video of Table Explorer</h2><p class="paragraph" style="text-align:left;">If you want to watch the video of BigQuery Table Explorer then click on the following link. </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://youtu.be/Os9FQaalXNY?utm_source=beehiiv&utm_medium=email&utm_campaign=bigquery-table-explorer" target="_blank" rel="noopener noreferrer nofollow">https://youtu.be/Os9FQaalXNY</a></p><h2 class="heading" style="text-align:left;" id="a-few-more-things-to-know">A few more things to know</h2><ol start="1"><li><p class="paragraph" style="text-align:left;"><b>Exceptions</b>: Nested record type columns such as event_params are not supported in this feature.</p></li><li><p class="paragraph" style="text-align:left;"><b>Cost</b>: Table explorer runs queries to display table exploration results. These queries incur compute pricing charges. You can also incur compute charges if you run a query generated by table explorer.</p></li><li><p class="paragraph" style="text-align:left;"><b>Permissions</b>: You will BigQuery Job user on the project and BigQuery Data Viewer permissions on all the tables that you want to explore. </p><p class="paragraph" style="text-align:left;">If you created the account are admin then you have all the required permissions.</p></li><li><p class="paragraph" style="text-align:left;">Learn BigQuery with GA4 data at <a class="link" href="https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts?utm_source=beehiiv&utm_medium=email&utm_campaign=bigquery-table-explorer" target="_blank" rel="noopener noreferrer nofollow">https://academy.optizent.com/courses/bigquery-for-marketers-and-marketing-analysts</a></p></li></ol><p class="paragraph" style="text-align:left;">Happy Learning!</p><p class="paragraph" style="text-align:left;">Anil Batra, Your Digital Analytics Coach<br><a class="link" href="https://www.optizent.com?utm_source=beehiiv&utm_medium=email&utm_campaign=bigquery-table-explorer" target="_blank" rel="noopener noreferrer nofollow">Optizent.com</a></p><hr class="content_break"><h3 class="heading" style="text-align:left;">Use AI as Your Personal Assistant</h3><div class="image"><a class="image__link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_c5facadb-dcfa-4b4d-b3f0-2d0832aa43ec_928b37de&bhcl_id=a26ccbce-9b0f-4687-817f-debe51db6150_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="border-radius:0px 0px 0px 0px;border-style:solid;border-width:0px 0px 0px 0px;box-sizing:border-box;border-color:#E5E7EB;" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/17c776c8-8aad-45d6-aba9-71a2e51c315b/AI_Task_Delegation_2.png?t=1718208627"/></a></div><p class="paragraph" style="text-align:left;">Ready to embrace a new era of task delegation? </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_c5facadb-dcfa-4b4d-b3f0-2d0832aa43ec_928b37de&bhcl_id=a26ccbce-9b0f-4687-817f-debe51db6150_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">HubSpot’s</a> highly anticipated AI Task Delegation Playbook is your key to supercharging your productivity and saving precious time.</p><p class="paragraph" style="text-align:left;">Learn how to integrate AI technology into your processes, allowing you to optimize resource allocation and maximize output with precision and ease. </p><p class="paragraph" style="text-align:left;"><a class="link" href="https://offers.hubspot.com/ai-delegation?utm_medium=email-media-newsletter&utm_source={{publication_alphanumeric_id}}&utm_campaign=creator&utm_content=beehiiv&utm_term=6-1-2024&_bhiiv=opp_c5facadb-dcfa-4b4d-b3f0-2d0832aa43ec_928b37de&bhcl_id=a26ccbce-9b0f-4687-817f-debe51db6150_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Download Now!</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=0213a4e3-d9d9-4043-8eff-0c6594e8c280&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>Purchases not showing up in GA4</title>
  <description>How BigQuery helped.</description>
  <link>https://bigquery.optizent.com/p/purchases-not-showing-ga4</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/purchases-not-showing-ga4</guid>
  <pubDate>Wed, 24 Jul 2024 20:22:49 +0000</pubDate>
  <atom:published>2024-07-24T20:22:49Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">Recently <a class="link" href="https://www.optizent.com/google-analytics-consulting-services/?utm_source=beehiiv&utm_medium=email&utm_campaign=purchases-not-showing-up-in-ga4" target="_blank" rel="noopener noreferrer nofollow">we were auditing a GA4</a> account but no purchase data was showing up.</p><p class="paragraph" style="text-align:left;">The natural way for anybody to debug that is to make sure</p><ol start="1"><li><p class="paragraph" style="text-align:left;">Purchase event is firing</p></li><li><p class="paragraph" style="text-align:left;">Make sure it is sending the right parameters</p></li><li><p class="paragraph" style="text-align:left;">Make sure it is sending to the right GA4 property</p></li><li><p class="paragraph" style="text-align:left;">and so on.</p></li></ol><p class="paragraph" style="text-align:left;">And that’s exactly were the first steps. This setup was a bit more complicated because purchase data was sent via server-side tracking. So we did check the <a class="link" href="https://academy.optizent.com/courses/google-tag-manager-server-side?utm_source=beehiiv&utm_medium=email&utm_campaign=purchases-not-showing-up-in-ga4" target="_blank" rel="noopener noreferrer nofollow">server-side setup</a> as well and it looked fine.</p><p class="paragraph" style="text-align:left;">Everything looked fine. However no data was showing up in GA4.</p><p class="paragraph" style="text-align:left;">Our default audit setup also includes sending the GA4 data to BigQuery. In this case the client had that already setup so we could see the past data.</p><p class="paragraph" style="text-align:left;">And guess what? The purchase data was in BigQuery but not in GA4.</p><p class="paragraph" style="text-align:left;">So GA4 was hiding that data, which happens in case of <a class="link" href="https://www.optizent.com/blog/ga4-thresholding-applied-what-is-ga4-data-threshold-and-how-to-resolve-it/?utm_source=beehiiv&utm_medium=email&utm_campaign=purchases-not-showing-up-in-ga4" target="_blank" rel="noopener noreferrer nofollow">thresholding but there there was no thresholding message shown in GA4.</a></p><p class="paragraph" style="text-align:left;">So BigQuery confirmed that indeed all the purchase data was being sent to GA4 and there was no issue with purchase tags, trigger or values. Having this knowledge shifted our focus from debugging tag firing and parameters to why GA4 is withholding that information.</p><p class="paragraph" style="text-align:left;">Further digging into BigQuery data showed us the reason.</p><p class="paragraph" style="text-align:left;">There was an issue with user id setup.</p><p class="paragraph" style="text-align:left;">Now I can’t go into every single detail because every setup in different and every issue is different but the point of this post is to tell you the important of looking at the raw data because aggregated data in GA4 does not tell you the full story.</p><p class="paragraph" style="text-align:left;">Ability to send GA4 data to BigQuery is one of the best features of GA4 . Don’t let it go waste. Having the data in BigQuery gives deeper insights and debugging capabilities that are just not possible with GA4 interface.</p><p class="paragraph" style="text-align:left;">So if you haven’t yet started with BigQuery then do it right away. You will be amazed how much time and effort you save while debugging GA4.</p><p class="paragraph" style="text-align:left;">(Note: I do cover such cases and go over the details of how we solved them in<a class="link" href="https://academy.optizent.com/courses/membership?utm_source=beehiiv&utm_medium=email&utm_campaign=purchases-not-showing-up-in-ga4" target="_blank" rel="noopener noreferrer nofollow"> Optizent Inner Circle Membership</a>).</p><hr class="content_break"><h3 class="heading" style="text-align:left;" id="get-smarter-on-ai-in-5-minutes-a-da">Get smarter on AI in 5 minutes a day.</h3><p class="paragraph" style="text-align:left;">The Rundown is the world’s largest AI newsletter, read by over 600,000 professionals from companies like Apple, OpenAI, NASA, Tesla, and more.</p><p class="paragraph" style="text-align:left;">Their expert research team spends all day learning what’s new in AI and gives you ‘the rundown’ of the most important developments in one free email every morning.</p><p class="paragraph" style="text-align:left;">The result? Readers not only keep up with the insane pace of AI but also learn <b>why it actually matters.</b></p><p class="paragraph" style="text-align:left;"><a class="link" href="https://magic.beehiiv.com/v1/4d03390d-2481-4299-b949-ffd8b38b4c38?email={{email}}&utm_source=beehiiv&utm_campaign={{publication_name_param}}&redirect_to=https%3A%2F%2Fupscribe.page%2Faa34c745df&redirect_delay=1&_bhiiv=opp_955c4e40-8451-409e-b2f8-fd59c9ce95a3_e4221c46&bhcl_id=20212549-808a-4f6b-aae5-10df79e40c0e_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Subscribe with one click.</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=f8f42db4-a1f3-4916-b446-abe35294f4d9&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

      <item>
  <title>GA4 To BigQuery in 3 Simple Steps</title>
  <description>Beginners guide to sending your GA4 data to BigQuery</description>
      <enclosure url="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/ccc2b345-9a90-4320-b4d0-547d62097778/bigquery-api.JPG" length="57625" type="image/jpeg"/>
  <link>https://bigquery.optizent.com/p/3-steps-ga4-bigquery</link>
  <guid isPermaLink="true">https://bigquery.optizent.com/p/3-steps-ga4-bigquery</guid>
  <pubDate>Fri, 19 Jul 2024 16:17:37 +0000</pubDate>
  <atom:published>2024-07-19T16:17:37Z</atom:published>
    <dc:creator>Anil Batra</dc:creator>
  <content:encoded><![CDATA[
    <div class='beehiiv'><style>
  .bh__table, .bh__table_header, .bh__table_cell { border: 1px solid #C0C0C0; }
  .bh__table_cell { padding: 5px; background-color: #FFFFFF; }
  .bh__table_cell p { color: #2D2D2D; font-family: 'Helvetica',Arial,sans-serif !important; overflow-wrap: break-word; }
  .bh__table_header { padding: 5px; background-color:#F1F1F1; }
  .bh__table_header p { color: #2A2A2A; font-family:'Trebuchet MS','Lucida Grande',Tahoma,sans-serif !important; overflow-wrap: break-word; }
</style><div class='beehiiv__body'><p class="paragraph" style="text-align:left;">If you have already connected GA4 to BigQuery then you can skip this email. If you haven’t yet started then continue reading.</p><p class="paragraph" style="text-align:left;">Recently a lot of Universal Analytics clients were scrambling to backup there old data. Some of them learned that they can&#39;t back up the entire historical data because of the data retention settings they had in place.</p><p class="paragraph" style="text-align:start;">If you have migrated to GA4, it is time to make sure that you don&#39;t run into the same issues in the future.</p><p class="paragraph" style="text-align:start;">In <a class="link" href="https://academy.optizent.com/courses/digital-marketing-and-analytics-live-classes?coupon=LIVESESSIONS&utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">my recent live session</a>, I covered three simple steps to get your GA4 data backed up in BigQuery every day, and that&#39;s what I am going to show you in this post. If you would rather watch the video then go to <a class="link" href="https://www.youtube.com/watch?v=n3vrKaMdtkw&utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">https://www.youtube.com/watch?v=n3vrKaMdtkw</a>.</p><h2 class="heading" style="text-align:start;" id="ga-4-to-big-query-in-3-simple-steps">GA4 to BigQuery in 3 Simple Steps</h2><ol start="1"><li><p class="paragraph" style="text-align:left;">Create a BigQuery Account and Project in Google Cloud</p></li><li><p class="paragraph" style="text-align:left;">Enable GA4 to BigQuery Setting in GA4</p></li><li><p class="paragraph" style="text-align:left;">Enable BigQuery API in Google Clouds</p></li></ol><h3 class="heading" style="text-align:start;" id="step-1-create-a-big-query-and-proje"><b>Step 1: Create a BigQuery and Project In Google Cloud</b></h3><p class="paragraph" style="text-align:start;">Go to <a class="link" href="https://cloud.google.com/bigquery?utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">https://cloud.google.com/bigquery</a></p><p class="paragraph" style="text-align:start;">Click on &quot;Get Started for Free&quot; or a big button on the page that let&#39;s your create your account.</p><p class="paragraph" style="text-align:start;">Go through the steps and make sure to enter your credit card and signup for paid version. Don&#39;t worry you won&#39;t be charged right away and you might never be charged as BigQuery give you a lot of free data storage and query processing every month. If you are worried then reach out to us and we can help you setup some alters which will alter you if you are about to go over your free threshold.</p><p class="paragraph" style="text-align:start;">When you create an account, your project will be automatically created. Project is where your GA4 dataset will be created.</p><h3 class="heading" style="text-align:start;" id="step-2-enable-ga-4-big-query-integr"><b>Step 2: Enable GA4 + BigQuery integration</b></h3><p class="paragraph" style="text-align:start;">Go to Admin panel in GA4.</p><p class="paragraph" style="text-align:start;">Go to &quot;Product links&quot; section and click on &quot;BigQuery links&quot;.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/5adb88bc-c22c-4d9c-b31c-e83bb39c9969/image.png?t=1721405470"/></div><p class="paragraph" style="text-align:start;">Follow the prompts and pick the project that you just created in the previous step.</p><p class="paragraph" style="text-align:start;">Check all the boxes that you see. If you want to know what those boxes are for then <a class="link" href="https://www.youtube.com/watch?v=n3vrKaMdtkw&utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">watch the video</a>.</p><p class="paragraph" style="text-align:start;">Go ahead and save.</p><p class="paragraph" style="text-align:start;">Now you are ready to send the GA4 data to BigQuery.</p><h3 class="heading" style="text-align:start;" id="step-3-enable-big-query-ap-is"><b>Step 3: Enable BigQuery APIs.</b></h3><p class="paragraph" style="text-align:start;">In BigQuery click on the hamburger menu in the top left corner, scroll down to API & Services and then select Library.</p><p class="paragraph" style="text-align:start;">You can also go directly to <a class="link" href="https://console.cloud.google.com/apis/library?utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">https://console.cloud.google.com/apis/library</a></p><p class="paragraph" style="text-align:start;">Search for BigQuery APIs and then click on enable button.</p><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/c0a9a776-65f8-4eee-8ec1-409f462154f9/image.png?t=1721366130"/></div><p class="paragraph" style="text-align:start;">That&#39;s it, now your GA4 data will start to flow to BigQuery. You will have to wait for 24 hours or so for the first day of the data.</p><p class="paragraph" style="text-align:start;">We can get you and your team trained on BigQuery. If interested then email me at <a class="link" href="mailto:support@optizent.com" target="_blank" rel="noopener noreferrer nofollow">support@optizent.com</a>. We can also help you setup everything and get it working for you.</p><h2 class="heading" style="text-align:left;" id="watch-the-ga-4-to-big-query-in-3-st">Watch The GA4 to BigQuery in 3 Steps Video</h2><div class="image"><img alt="" class="image__image" style="" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/163d0dcb-f8a1-4fc4-be9c-f6464163f74a/GA4_Data_To_BigQuery__2_.png?t=1721367518"/></div><h2 class="heading" style="text-align:left;" id="upgrade-to-premium-level">Upgrade to Premium Level</h2><p class="paragraph" style="text-align:start;">I cover a lot of advanced level concepts and SQL in the advanced section of my newsletter. Currently, you have an opportunity to lock in a low discount prices and get access to all of my premium content. </p><p class="paragraph" style="text-align:start;">Upgrade by visiting <a class="link" href="https://bigquery.beehiiv.com/upgrade?utm_source=beehiiv&utm_medium=email&utm_campaign=ga4-to-bigquery-in-3-simple-steps" target="_blank" rel="noopener noreferrer nofollow">https://bigquery.beehiiv.com/upgrade</a></p><hr class="content_break"><h3 class="heading" style="text-align:left;">Learn AI in 5 Minutes a Day</h3><div class="image"><a class="image__link" href="https://magic.beehiiv.com/v1/31a7c576-0eb2-4ef3-abc7-bc75ede786fe?email={{email}}&utm_source=beehiiv&utm_campaign={{publication_name_param}}&_bhiiv=opp_d33722d1-6600-41ad-8959-4b17d36d445b_65769d95&bhcl_id=2e497659-3dd9-45d8-843c-8b41ab8d4cf1_{{subscriber_id}}_{{email_address_id}}" rel="noopener" target="_blank"><img class="image__image" style="border-radius:0px 0px 0px 0px;border-style:solid;border-width:0px 0px 0px 0px;box-sizing:border-box;border-color:#E5E7EB;" src="https://media.beehiiv.com/cdn-cgi/image/fit=scale-down,format=auto,onerror=redirect,quality=80/uploads/asset/file/05871070-24c8-4c42-a00f-a6b736c829a4/hero_imagery.png?t=1712076292"/></a></div><p class="paragraph" style="text-align:left;">AI Tool Report is one of the fastest-growing and most respected newsletters in the world, with over 550,000 readers from companies like OpenAI, Nvidia, Meta, Microsoft, and more. </p><p class="paragraph" style="text-align:left;">Our research team spends hundreds of hours a week summarizing the latest news, and finding you the best opportunities to save time and earn more using AI.</p><p class="paragraph" style="text-align:left;"><a class="link" href="https://magic.beehiiv.com/v1/31a7c576-0eb2-4ef3-abc7-bc75ede786fe?email={{email}}&utm_source=beehiiv&utm_campaign={{publication_name_param}}&_bhiiv=opp_d33722d1-6600-41ad-8959-4b17d36d445b_65769d95&bhcl_id=2e497659-3dd9-45d8-843c-8b41ab8d4cf1_{{subscriber_id}}_{{email_address_id}}" target="_blank" rel="noopener noreferrer nofollow">Sign up with 1-Click</a></p></div><div class='beehiiv__footer'><br class='beehiiv__footer__break'><hr class='beehiiv__footer__line'><a target="_blank" class="beehiiv__footer_link" style="text-align: center;" href="https://www.beehiiv.com/powered-by?publication_logo=https%3A%2F%2Fmedia.beehiiv.com%2Fcdn-cgi%2Fimage%2Ffit%3Dscale-down%2Cformat%3Dauto%2Conerror%3Dredirect%2Cquality%3D80%2Fuploads%2Fpublication%2Flogo%2Fe8e98343-caba-4191-b5a6-e26347b7b436%2FCopy_of_Copy_of_Copy_of_Don_t_Like_GA4.png%3Fv%3D1789183341&publication_name=GA4+BigQuery+Newsletter+For+Marketing+Analytics&utm_campaign=df164a40-ea4e-45d3-8555-15a1d35a4a16&utm_medium=post_rss&utm_source=ga4_bigquery_newsletter_for_marketing_analytics">Powered by beehiiv</a></div></div>
  ]]></content:encoded>
</item>

  </channel>
</rss>
