We've updated our documentation with the latest features and updates introduced by Ads Data Hub's
two new experiences.
Advertisers, agencies, and publishers, refer to the
Marketers site.
Vendors and partners, refer to the
Measurement Partners site.
OutputArtifacts
Output artifacts created during query execution, e.g. Temp tables are created using CREATE TABLE temp_table AS (...) in an Ads Data Hub query.
JSON representation |
{
"tempTables": [
{
object (TempTable )
}
]
} |
Fields |
tempTables[] |
object (TempTable )
Defines list of temp tables created by an Ads Data Hub query.
|
Except as otherwise noted, the content of this page is licensed under the Creative Commons Attribution 4.0 License, and code samples are licensed under the Apache 2.0 License. For details, see the Google Developers Site Policies. Java is a registered trademark of Oracle and/or its affiliates.
Last updated 2024-09-18 UTC.
[null,null,["Last updated 2024-09-18 UTC."],[[["Output artifacts like temporary tables are generated during Ads Data Hub query execution using SQL statements like `CREATE TABLE temp_table AS (...)`."],["The JSON representation of these temporary tables provides a structured view of their details, using the `tempTables` field to list each table as a `TempTable` object."]]],["Ads Data Hub query executions may generate temporary tables. These temporary tables are created using the `CREATE TABLE temp_table AS (...)` syntax. The `tempTables` field, represented as a JSON array, lists these tables. Each item in the `tempTables` array is an object conforming to the `TempTable` schema, and it describes one of the temporary tables created during the query execution.\n"]]