Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
01-08-2025 03:14 AM
Hi @AlleyCat , Hope you are doing well!
The jobs table includes a delete_time column that records the time when the job was deleted by the user. So to identify deleted jobs, you can run a query like the following:
SELECT * FROM system.lakeflow.jobs WHERE delete_time IS NOT NULL;
Please let me know if this helps and leave a like if this information is useful, followups are appreciated.
Kudos
Ayushi