Quickly generate SQL UNION queries and LookML by pasting a raw
CSV file.
This tool isintended to help you replicate data from one Looker Classic/Core
instance to another instance that doesn't have the same data connections for troubleshooting
purposes.
To use the application, follow these steps:
Paste your CSV or JSON data into the input box.
Choose a custom separator if your data uses something other than a comma (such as a
semicolon or tab).
Click the "Generate SQL & LookML" button to process your data.
Check the generated results and copy them over to a new view on Looker
Edit the view name and configure the generated fields as needed and create an explore based
on this view for exploring it.
UNION vs. UNION ALL:
UNION: Combines the result sets of multiple SELECT queries, removing any duplicate rows.It may not work on Looker Derived Tables, as SQL requires UNION_ALL when union is present in CTEs of queries.
UNION ALL: Combines result sets without removing duplicates, retaining all
rows.
All operations happen entirely in your browser and no data is stored or sent to any
server. You can even run it offline.