<?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: SQL view to display the last reconcile/post dates in SDE tables in Geodatabase Questions</title>
    <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797875#M2484</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thanks for providing me with the query. This query is helpful to find out when the version was last touched, however this would still not provide the date when the last reconcile/post operation was run. Is there some special flag indicating which state/lineage had reconcile/post run on it specifically? Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 31 Jul 2018 15:11:46 GMT</pubDate>
    <dc:creator>JanTeisinger</dc:creator>
    <dc:date>2018-07-31T15:11:46Z</dc:date>
    <item>
      <title>SQL view to display the last reconcile/post dates in SDE tables</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797872#M2481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, I would like to create a view that would show the dates for the last reconcile and post operation for each version in GDB. I understand each state has a closing date and each version can have last touched data. However I am having a difficult time figuring out at which point either the states or lineages would be considered "reconciled/posted". I was trying to use a combination of SDE_states, SDE_versions, SDE_lineages_modified and SDE_state_lineages.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Would anyone have SQL code or ideas how to accomplish this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The idea here is to create a report that would list which versions need to be reconciled and posted within a certain time period, to hold our users accountable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jun 2018 19:32:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797872#M2481</guid>
      <dc:creator>JanTeisinger</dc:creator>
      <dc:date>2018-06-20T19:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: SQL view to display the last reconcile/post dates in SDE tables</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797873#M2482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would also appreciate an example of how to construct a sql query returning a list of versions with last modified dates.&amp;nbsp; &amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2018 13:38:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797873#M2482</guid>
      <dc:creator>chrisSchmuck</dc:creator>
      <dc:date>2018-07-16T13:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: SQL view to display the last reconcile/post dates in SDE tables</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797874#M2483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Jan-&lt;/P&gt;&lt;P&gt;After I viewed the relational diagram, you could use the following query to obtain the last time a versions was modified, which includes edit and rec/post operations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT versions.name, states.closing_time&lt;BR /&gt;from versions&lt;BR /&gt;inner join states on versions.state_id = states.state_id;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://desktop.arcgis.com/en/arcmap/10.3/manage-data/gdbs-in-sql-server/pdf/sdesystables_diagram.pdf"&gt;http://desktop.arcgis.com/en/arcmap/10.3/manage-data/gdbs-in-sql-server/pdf/sdesystables_diagram.pdf&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jul 2018 15:01:44 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797874#M2483</guid>
      <dc:creator>chrisSchmuck</dc:creator>
      <dc:date>2018-07-16T15:01:44Z</dc:date>
    </item>
    <item>
      <title>Re: SQL view to display the last reconcile/post dates in SDE tables</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797875#M2484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, thanks for providing me with the query. This query is helpful to find out when the version was last touched, however this would still not provide the date when the last reconcile/post operation was run. Is there some special flag indicating which state/lineage had reconcile/post run on it specifically? Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Jul 2018 15:11:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/797875#M2484</guid>
      <dc:creator>JanTeisinger</dc:creator>
      <dc:date>2018-07-31T15:11:46Z</dc:date>
    </item>
    <item>
      <title>Re: SQL view to display the last reconcile/post dates in SDE tables</title>
      <link>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/1597887#M9522</link>
      <description>&lt;P&gt;SELECT edit_moment FROM sde.sde_branch_tables_modified where branch_id = 0 order by edit_moment desc limit 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;0 = default.&amp;nbsp; see the rest of branches in sde_branches.&lt;/P&gt;</description>
      <pubDate>Fri, 21 Mar 2025 04:18:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/geodatabase-questions/sql-view-to-display-the-last-reconcile-post-dates/m-p/1597887#M9522</guid>
      <dc:creator>ashizzle</dc:creator>
      <dc:date>2025-03-21T04:18:56Z</dc:date>
    </item>
  </channel>
</rss>

