<?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 Editing is not reflected to Real table in sql database in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699689#M39767</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is my first time working on GIS , I installed the arcsde and created versions and everything works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I edit any feature in arcmap and post the edits to the Default version the changes are reflected to a different table in sql database which starts by the "S" and followed by a number , so my question is how can I reflect the changes to the real table that has the same name as the feature class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Oct 2012 08:41:17 GMT</pubDate>
    <dc:creator>OsamaZarour</dc:creator>
    <dc:date>2012-10-09T08:41:17Z</dc:date>
    <item>
      <title>Editing is not reflected to Real table in sql database</title>
      <link>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699689#M39767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is my first time working on GIS , I installed the arcsde and created versions and everything works fine.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;But when I edit any feature in arcmap and post the edits to the Default version the changes are reflected to a different table in sql database which starts by the "S" and followed by a number , so my question is how can I reflect the changes to the real table that has the same name as the feature class?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 08:41:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699689#M39767</guid>
      <dc:creator>OsamaZarour</dc:creator>
      <dc:date>2012-10-09T08:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Editing is not reflected to Real table in sql database</title>
      <link>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699690#M39768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;ArcSDE uses delta tables for versioned data. The business table is created when the FC is created.&amp;nbsp; When you registar a FC as version two tables are created: A table for adds and D table for deletes.&amp;nbsp; When you make an edit in ArcMap, the business table is never changed. The delta tables should contain the same fields as your buisness table with a couple additional fields.&amp;nbsp; Each record in the delta tables has a state value with it.&amp;nbsp; When ArcMap uses that FC it looks for the most current state value for each feature.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;add a feature:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a new record is added to the A table for the new feature.&amp;nbsp; The ObjectID in the A table is the next unique available number for that FC.&amp;nbsp; No records are added to the business table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;delete a feature:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a new record is added to the D table to remove the feature.&amp;nbsp; The ObjectID in the D table is the feature's ObjectID.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;update/change a feature:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;a new record is added to the D table to remove the feature.&amp;nbsp; Next, a new record is added to A table to reflect the feature's new position/attributes/geometry.&amp;nbsp; The ObjectID for both records is the feature's ObjectID. State for both A and D records are the same.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;When ever a new record is added to either A or D table, the state is next highest available state.&amp;nbsp; So if a feature has 3 records in the A table and 2 in the D table, ArcMap will only use the records with the highest state.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;It is normally a bad idea to edit or change the A and D tables since ArcSDE has several built in checks to handle changes to these tables and changing them manually can break the FC.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;However, to view which delta tables are associated with a certain FC:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; Open an SDE connection in ArcCatalog&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; Right click on a FC and select the properties option&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3.&amp;nbsp; Click the Index tab&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4.&amp;nbsp; The number associated with the spatial index is typically the number used for the A and D tables (ex A751_IX will have A table as a A751 table and a D751 table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The A and D tables and states table can get really big after while so it is a good idea to compress your SDE every so often which removes outdated records in these tables.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;---&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;This is the short version of ArcSDE version and is not 100% true in all cases.&amp;nbsp; But it should get you started.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 10:56:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699690#M39768</guid>
      <dc:creator>KevinDunlop</dc:creator>
      <dc:date>2012-10-09T10:56:27Z</dc:date>
    </item>
    <item>
      <title>Re: Editing is not reflected to Real table in sql database</title>
      <link>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699691#M39769</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thank you very much, your answer is very helpful.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Oct 2012 19:42:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/editing-is-not-reflected-to-real-table-in-sql/m-p/699691#M39769</guid>
      <dc:creator>OsamaZarour</dc:creator>
      <dc:date>2012-10-09T19:42:51Z</dc:date>
    </item>
  </channel>
</rss>

