ORGANIZATION_OPTIONS_CHANGES view

You can query the INFORMATION_SCHEMA.ORGANIZATION_OPTIONS_CHANGES view to retrieve real-time metadata about BigQuery configuration changes in an organization. This view reflects organization-level and project-level configuration changes made after January 31, 2024.

Required permissions

To get the permission that you need to get the configuration changes, ask your administrator to grant you the BigQuery Admin (roles/bigquery.admin) IAM role on organization. For more information about granting roles, see Manage access.

This predefined role contains the bigquery.config.update permission, which is required to get the configuration changes.

You might also be able to get this permission with custom roles or other predefined roles.

Schema

When you query the INFORMATION_SCHEMA.ORGANIZATION_OPTIONS_CHANGES view, the query results contain one row for each configuration change in an organization.

The INFORMATION_SCHEMA.ORGANIZATION_OPTIONS_CHANGES view has the following schema:

Column name Data type Value
update_time TIMESTAMP The time the configuration change occurred.
username STRING For first-party users, it's their user email. For third-party users, it's the name that users set in the third-party identity provider.
updated_options JSON A JSON object of the configuration options users updated in the change, containing the previous and the new values of updated fields.
project_id STRING The project ID. This field is empty for organization-level configuration changes.
project_number INTEGER The project number. This field is empty for the organization-level configuration changes.

Data retention

This view contains sessions that are running, and the history of sessions completed in the past 180 days.

Scope and syntax

Queries against this view must have a region qualifier.

View name Resource scope Region scope
`region-REGION`.INFORMATION_SCHEMA.ORGANIZATION_OPTIONS_CHANGES Configuration changes within the specified organization. REGION

Replace the following:

Examples

The following example retrieves all changes of the default_query_job_timeout_ms option option:

SELECT
  *
FROM
  `region-REGION`.INFORMATION_SCHEMA.ORGANIZATION_OPTIONS_CHANGES
WHERE
  updated_options.default_query_job_timeout_ms is not null;

The result is similar to the following:

+----------------+------------+-------------------------+-----------------+------------------------------------------------------------------------------------------------------------------+
| project_number | project_id | update_time             | username        | updated_options                                                                                                  |
|----------------|------------|-------------------------|-----------------|------------------------------------------------------------------------------------------------------------------|
| 4471534625     | myproject1 | 2023-08-22 06:57:49 UTC | user1@gmail.com | {"default_query_job_timeout_ms":{"new":0,"old":1860369},"default_time_zone":{"new":"America/New_York","old":""}} |
|----------------|------------|-------------------------|-----------------|------------------------------------------------------------------------------------------------------------------|
| 5027725474     | myproject2 | 2022-08-01 00:00:00 UTC | user2@gmail.com | {"default_query_job_timeout_ms":{"new":1860369,"old":1860008}}                                                   |
+----------------+------------+-------------------------+-----------------+------------------------------------------------------------------------------------------------------------------+