WebmasterID logoWebmasterID
Data quality

Intraday vs daily export tables

The GA4 BigQuery export writes provisional intraday tables during the day and a finalised daily table afterwards. Intraday data is incomplete and can be reprocessed, and once the daily table lands the intraday one is removed. Querying both, or trusting intraday as final, causes double counts and shifting numbers. This page explains the two table types and how to query them correctly.

Verified against primary sources

Two kinds of table

When the BigQuery export is enabled with streaming or daily delivery, GA4 writes intraday tables (events_intraday_) during the current day as data arrives. These are provisional: rows can be added and the data reprocessed. After the day closes, a finalised daily table (events_) is produced, and the corresponding intraday table is removed.

The two are not meant to be summed; the daily table is the authoritative version of a completed day.

Querying without double counting

For settled analysis, query the finalised daily tables and exclude today's intraday table. If you need near-real-time data, query intraday explicitly and treat the numbers as provisional, never summing them with the daily table for the same date.

Guard wildcard queries with a _TABLE_SUFFIX filter so a single events_* pattern does not accidentally pull both intraday and daily rows for the same day.

How it appears in analytics and logs

Counts that change through the day, or totals that look doubled, often mean a query is reading provisional intraday tables alongside finalised daily ones.

Diagnostic use case

Query the GA4 BigQuery export without double-counting by understanding when intraday tables are provisional and when daily tables are final.

What WebmasterID can help detect

WebmasterID separates fresh from finalised event data explicitly, so you always know whether a count is provisional or settled.

Common mistakes

Privacy and accuracy notes

Both table types carry the export's pseudonymous data; intraday processing carries no extra privacy implication. This page is educational, not legal advice.

Related pages

Sources and verification notes

Last reviewed 2026-06-24. Facts are checked against primary/official sources where available; uncertain specifics are marked “Data not yet verified” rather than guessed.