<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: To identify deleted Runs in Workflow.Job UI in &amp;quot;system.lakeflow&amp;quot; in Data Engineering</title>
    <link>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104817#M41892</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/76914"&gt;@Ayushi_Suthar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for spending time helping me on my query..&lt;/P&gt;&lt;P&gt;I think "SELECT&amp;nbsp;*&amp;nbsp;FROM&amp;nbsp;system.lakeflow.jobs&amp;nbsp;WHERE&amp;nbsp;delete_time&amp;nbsp;IS&amp;nbsp;NOT NULL;" is getting deleted JOB_ID.&lt;/P&gt;&lt;P&gt;I would like to know if deleted RUNs of JOB_ID can be identified.&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;1. I ran "UpdateEmpoyeeProfile" job 5 times. It would have 5 runs.&lt;BR /&gt;2. Assuming RUN_ID was 1, 2, 3, 4 and 5 respectively.&lt;BR /&gt;3. In "Workflow &amp;gt; Jobs &amp;gt; Runs" UI, i would be seeing 5 rows of runs where "Run ID" column would be showing values 1, 2, 3, 4 and 5.&lt;BR /&gt;4. I deleted "Run ID=3" from the UI.&lt;BR /&gt;5. The UI would now show only 4 "Run ID" namely 1, 2, 4 and 5.&lt;BR /&gt;6. However in the database, i am unable to find a status indicating "Run ID"=3 was deleted.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
    <pubDate>Thu, 09 Jan 2025 01:53:34 GMT</pubDate>
    <dc:creator>AlleyCat</dc:creator>
    <dc:date>2025-01-09T01:53:34Z</dc:date>
    <item>
      <title>To identify deleted Runs in Workflow.Job UI in "system.lakeflow"</title>
      <link>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104671#M41838</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I executed a few runs in a Workflow.Jobs UI. I then deleted some of them. I am seeing the deleted runs in "&lt;SPAN&gt;system&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;lakeflow&lt;/SPAN&gt;&lt;SPAN&gt;.job_run_timeline&lt;/SPAN&gt;&lt;SPAN&gt;". How do i know which runs are the deleted ones? Thanks&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 10:53:03 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104671#M41838</guid>
      <dc:creator>AlleyCat</dc:creator>
      <dc:date>2025-01-08T10:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: To identify deleted Runs in Workflow.Job UI in "system.lakeflow"</title>
      <link>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104675#M41840</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/76876"&gt;@AlleyCat&lt;/a&gt;&amp;nbsp;, Hope you are doing well!&amp;nbsp;&lt;/P&gt;
&lt;P&gt;The jobs table includes a &lt;STRONG&gt;delete_time&lt;/STRONG&gt; 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:&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="hljs-keyword"&gt;SELECT&lt;/SPAN&gt; &lt;SPAN class="hljs-operator"&gt;*&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;FROM&lt;/SPAN&gt; system.lakeflow.jobs &lt;SPAN class="hljs-keyword"&gt;WHERE&lt;/SPAN&gt; delete_time &lt;SPAN class="hljs-keyword"&gt;IS&lt;/SPAN&gt; &lt;SPAN class="hljs-keyword"&gt;NOT NULL&lt;/SPAN&gt;;&lt;/P&gt;
&lt;P&gt;Please let me know if this helps and leave a like if this information is useful, followups are appreciated.&lt;BR /&gt;Kudos&lt;BR /&gt;Ayushi&lt;/P&gt;</description>
      <pubDate>Wed, 08 Jan 2025 11:14:50 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104675#M41840</guid>
      <dc:creator>Ayushi_Suthar</dc:creator>
      <dc:date>2025-01-08T11:14:50Z</dc:date>
    </item>
    <item>
      <title>Re: To identify deleted Runs in Workflow.Job UI in "system.lakeflow"</title>
      <link>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104817#M41892</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.databricks.com/t5/user/viewprofilepage/user-id/76914"&gt;@Ayushi_Suthar&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thanks for spending time helping me on my query..&lt;/P&gt;&lt;P&gt;I think "SELECT&amp;nbsp;*&amp;nbsp;FROM&amp;nbsp;system.lakeflow.jobs&amp;nbsp;WHERE&amp;nbsp;delete_time&amp;nbsp;IS&amp;nbsp;NOT NULL;" is getting deleted JOB_ID.&lt;/P&gt;&lt;P&gt;I would like to know if deleted RUNs of JOB_ID can be identified.&lt;/P&gt;&lt;P&gt;Example:&lt;BR /&gt;1. I ran "UpdateEmpoyeeProfile" job 5 times. It would have 5 runs.&lt;BR /&gt;2. Assuming RUN_ID was 1, 2, 3, 4 and 5 respectively.&lt;BR /&gt;3. In "Workflow &amp;gt; Jobs &amp;gt; Runs" UI, i would be seeing 5 rows of runs where "Run ID" column would be showing values 1, 2, 3, 4 and 5.&lt;BR /&gt;4. I deleted "Run ID=3" from the UI.&lt;BR /&gt;5. The UI would now show only 4 "Run ID" namely 1, 2, 4 and 5.&lt;BR /&gt;6. However in the database, i am unable to find a status indicating "Run ID"=3 was deleted.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;</description>
      <pubDate>Thu, 09 Jan 2025 01:53:34 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/104817#M41892</guid>
      <dc:creator>AlleyCat</dc:creator>
      <dc:date>2025-01-09T01:53:34Z</dc:date>
    </item>
    <item>
      <title>Re: To identify deleted Runs in Workflow.Job UI in "system.lakeflow"</title>
      <link>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/136412#M50561</link>
      <description>&lt;P&gt;Did you manage to resolve this?&lt;/P&gt;&lt;P&gt;I have the same issue. I have a job which ran only once and failed. I deleted the run in the UI, but our monitoring still shows the last execution in error because the record is still there in&amp;nbsp;&lt;/P&gt;&lt;DIV&gt;&lt;DIV&gt;&lt;SPAN&gt;system&lt;/SPAN&gt;&lt;SPAN&gt;.&lt;/SPAN&gt;&lt;SPAN&gt;lakeflow&lt;/SPAN&gt;&lt;SPAN&gt;.job_run_timeline and there is no flag to exclude it&lt;/SPAN&gt;&lt;/DIV&gt;&lt;/DIV&gt;</description>
      <pubDate>Tue, 28 Oct 2025 14:21:30 GMT</pubDate>
      <guid>https://community.databricks.com/t5/data-engineering/to-identify-deleted-runs-in-workflow-job-ui-in-quot-system/m-p/136412#M50561</guid>
      <dc:creator>CHuppe</dc:creator>
      <dc:date>2025-10-28T14:21:30Z</dc:date>
    </item>
  </channel>
</rss>

