<?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 SQL Trigger for Auditing in SDE in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779025#M1502</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are using 10.4 Geodatabase matching with ArcGIS release. Our goal is to setup a trigger on database side that will create a record for every time a record in deleted from the Default Version in SDE for Audit Purpose with following information:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ObjectID, Shape, Deleted By, Deleted On. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;So, I created a table – Audit_Log on SQL side. Then, I setup a Trigger after Delete on the Base Table using the following SQL code:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;CREATE&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;TRIGGER&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[&lt;/SPAN&gt;Audit_Log&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;] &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;ON&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[Table_A]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;AFTER&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;DELETE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;BEGIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;INSERT&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;INTO&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[&lt;/SPAN&gt; &lt;SPAN&gt;Audit_Log&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[OID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[SHAPE]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[DELETED_BY]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[DELETED_ON]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; OBJECTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;SHAPE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: fuchsia; background: white;"&gt;SUSER_NAME&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;(),&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: fuchsia; background: white;"&gt;GETDATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;()&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; deleted&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;END&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The above trigger is not running because I believe that all the data in Geodatabase is registered as versioned with edits not moving to base. I understand that with this option (edits not moving to base) the trigger will not fire up till the Compression is ran.&lt;/P&gt;&lt;P&gt;Is there any I can setup a trigger with the current setup to get the information required for audit purpose? Am I asking for a lot here?&lt;/P&gt;&lt;P&gt;We are aware of the Archiving Functionality in SDE. Unfortunately, it does not record system user who deletes the record. It only stamps the time when the feature was moved to Archived table.&lt;/P&gt;&lt;P&gt;Any help or guidance on the subject matter will be appreciated. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 12 Jun 2018 06:04:58 GMT</pubDate>
    <dc:creator>AdityarajChavada</dc:creator>
    <dc:date>2018-06-12T06:04:58Z</dc:date>
    <item>
      <title>SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779025#M1502</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;We are using 10.4 Geodatabase matching with ArcGIS release. Our goal is to setup a trigger on database side that will create a record for every time a record in deleted from the Default Version in SDE for Audit Purpose with following information:&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;ObjectID, Shape, Deleted By, Deleted On. &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;So, I created a table – Audit_Log on SQL side. Then, I setup a Trigger after Delete on the Base Table using the following SQL code:&lt;/P&gt;&lt;BLOCKQUOTE class="jive_macro_quote jive-quote jive_text_macro"&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;CREATE&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;TRIGGER&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[&lt;/SPAN&gt;Audit_Log&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;] &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;ON&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[Table_A]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;AFTER&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;DELETE&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;AS&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;BEGIN&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;INSERT&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;INTO&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; [dbo]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;.&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[&lt;/SPAN&gt; &lt;SPAN&gt;Audit_Log&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;]&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;(&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[OID]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[SHAPE]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[DELETED_BY]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;[DELETED_ON]&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;)&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;SELECT&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; OBJECTID&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;SHAPE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;,&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: fuchsia; background: white;"&gt;SUSER_NAME&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;(),&lt;/SPAN&gt; &lt;SPAN style="font-size: 9.5pt; color: fuchsia; background: white;"&gt;GETDATE&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: gray; background: white;"&gt;()&lt;/SPAN&gt;&lt;/P&gt;&lt;P style="margin-bottom: .0001pt;"&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt;&amp;nbsp; &lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;FROM&lt;/SPAN&gt;&lt;SPAN style="font-size: 9.5pt; color: black; background: white;"&gt; deleted&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 9.5pt; color: blue; background: white;"&gt;END&lt;/SPAN&gt;&lt;/P&gt;&lt;/BLOCKQUOTE&gt;&lt;P&gt;The above trigger is not running because I believe that all the data in Geodatabase is registered as versioned with edits not moving to base. I understand that with this option (edits not moving to base) the trigger will not fire up till the Compression is ran.&lt;/P&gt;&lt;P&gt;Is there any I can setup a trigger with the current setup to get the information required for audit purpose? Am I asking for a lot here?&lt;/P&gt;&lt;P&gt;We are aware of the Archiving Functionality in SDE. Unfortunately, it does not record system user who deletes the record. It only stamps the time when the feature was moved to Archived table.&lt;/P&gt;&lt;P&gt;Any help or guidance on the subject matter will be appreciated. &amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 06:04:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779025#M1502</guid>
      <dc:creator>AdityarajChavada</dc:creator>
      <dc:date>2018-06-12T06:04:58Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779026#M1503</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can setup the trigger on the D-table for that feature class. However, do note that the D-table is updated in 2 scenarios:&lt;/P&gt;&lt;P&gt;1. when a feature is actually deleted, (which you need)&lt;/P&gt;&lt;P&gt;2. when an existing feature is updated (which you don't need)&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://help.arcgis.com/en/geodatabase/10.0/sdk/arcsde/concepts/versioning/basicprinciples/deltatables.htm#DeletesTable" title="http://help.arcgis.com/en/geodatabase/10.0/sdk/arcsde/concepts/versioning/basicprinciples/deltatables.htm#DeletesTable"&gt;delta tables&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this might not give you the exact info you want to collect.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 06:22:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779026#M1503</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2018-06-12T06:22:35Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779027#M1504</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your reply! If I setup the trigger on the D-table, I am not sure I can get&amp;nbsp;the Shape information unless I am make a complicated sql join with Versioning system table.&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Jun 2018 09:50:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/779027#M1504</guid>
      <dc:creator>AdityarajChavada</dc:creator>
      <dc:date>2018-06-12T09:50:56Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1516098#M9204</link>
      <description>&lt;P&gt;I am updating acres field on A table for add/update. Do I need to use _evw view for update query or direct version table like &lt;STRONG&gt;update a.485 set acres =2.44 where OBJECTID in (Select OBJECTID from Inserted)&amp;nbsp; or&amp;nbsp;update [tablename]_evw set acres =2.44 where OBJECTID in (Select OBJECTID from Inserted) ?&amp;nbsp;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;after editing either of these methods, it inserts 0's in global id field like 000000-00000-0000-00000&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 07 Aug 2024 14:10:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1516098#M9204</guid>
      <dc:creator>vijaybadugu</dc:creator>
      <dc:date>2024-08-07T14:10:13Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1522700#M9236</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Edits on traditional versioned data performed using SQL should &lt;STRONG&gt;only&lt;/STRONG&gt; be made through versioned views.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://desktop.arcgis.com/en/arcmap/latest/manage-data/using-sql-with-gdbs/overview-edit-versioned-data-with-sql.htm" target="_self"&gt;&lt;SPAN&gt;An overview of editing versioned data using SQL&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Aug 2024 03:36:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1522700#M9236</guid>
      <dc:creator>Asrujit_SenGupta</dc:creator>
      <dc:date>2024-08-16T03:36:40Z</dc:date>
    </item>
    <item>
      <title>Re: SQL Trigger for Auditing in SDE</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1522711#M9238</link>
      <description>&lt;P&gt;Related:&amp;nbsp;&lt;/P&gt;&lt;DIV class=""&gt;Edit Log to capture Insert, Update, and Deletes via ArcGIS Arcade &lt;SPAN class=""&gt;attribute&lt;/SPAN&gt; &lt;SPAN class=""&gt;rule&lt;/SPAN&gt;&lt;/DIV&gt;&lt;DIV class=""&gt;&lt;A href="https://community.esri.com/t5/arcgis-pro-questions/edit-log-to-capture-insert-update-and-deletes-via/m-p/1513089/highlight/true#M86261" target="_blank" rel="noopener noreferrer"&gt;https://community.esri.com/t5/arcgis-pro-questions/edit-log-to-capture-insert-update-and-deletes-via/m-p/1513089/highlight/true#M86261&lt;/A&gt;&lt;/DIV&gt;</description>
      <pubDate>Fri, 16 Aug 2024 04:51:09 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-trigger-for-auditing-in-sde/m-p/1522711#M9238</guid>
      <dc:creator>Bud</dc:creator>
      <dc:date>2024-08-16T04:51:09Z</dc:date>
    </item>
  </channel>
</rss>

