There are two ways to query data in Atlan:
- writing your own SQL
- using the Visual Query Builder
πͺ Did you know? Atlan pushes all queries to the source (no data is stored in Atlan). In addition, Atlan applies access policies to the results before displaying them.
Write your own SQL
π€ Who can do this? Anyone with the knowledge to write SQL. You will need to be an admin or a member user with data access to the asset.
To query an asset with your own SQL:
- From the left menu of any screen, click Insights.
- Under the Explorer tab, find the asset you want to query:
- Use the Select database drop-down to choose another database, if necessary.
- Search for the asset by name in the search bar, or browse for it in the tree structure.
- Hover over the table or view, and click the play icon. This writes and runs a basic preview query.
- Under the Untitled tab on the right, change the sample query or write your own β separate multiple queries with a semicolon
;
. Click the Run button in the upper right to test your query as you write it.
The editor supports all read-based SQL statements, including join
. The editor will not run any write-based statements.
πͺ Did you know? You can select the context for your query to the left of the Run button. Then you won't need to fully-qualify table names with schema and database names.
Use the Visual Query Builder
π€ Who can do this? Any admin or member user with data access to the asset. No SQL knowledge required!
To query an asset using the Visual Query Builder:
- From the left menu of any screen, click Insights.
- At the top of the screen, to the right of the Untitled tab, click the + button and select New visual query.
- Under Select from choose the table or view you want to query.
- (Optional) In the column selector to the right, select the column you want to query.
- Then develop your query:
- Click the Run button to run the query and preview its results.
- Click the blue circular + button to add an action to the query.
- Repeat these steps until your query is complete.
- (Optional) If there are any errors in your query, click Auto fix for Atlan to recommend a fix.
- (Optional) In the query results set, click Copy to copy the query results or click Download to export them.
πͺ Did you know? You can learn more about the query builder actions in this example.