Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
03-11-2026 01:55 AM
Ok, great. You can also access these tables via APIs and SQL queries if required.
Here are some relevant links if you are interested...
https://docs.databricks.com/aws/en/admin/system-tables/jobs
https://docs.databricks.com/aws/en/dev-tools/bundles/resources
And here is a sample SQL script... gives you the latest version of the job and it's description.
SELECT
workspace_id,
job_id,
name,
description
FROM system.lakeflow.jobs
QUALIFY ROW_NUMBER() OVER (PARTITION BY workspace_id, job_id ORDER BY change_time DESC) = 1;
If this answer resolves your question, could you mark it as “Accept as Solution”? That helps other users quickly find the correct fix.
Regards,
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***
Ashwin | Delivery Solution Architect @ Databricks
Helping you build and scale the Data Intelligence Platform.
***Opinions are my own***