<?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 How to load features + attachments from FGDB to existing SDE GDB in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314409#M17988</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've got an existing feature class with attachments enabled in SDE. I have a file geodatabase with new features and their related attachments that I want to load into SDE. What is the best practice for loading these new features and attachments into an existing feature class? The data loader only takes the point features. The Add Attachments tool requires the attachments to be in a folder as individual files. Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2014 15:07:28 GMT</pubDate>
    <dc:creator>MikeSchonlau</dc:creator>
    <dc:date>2014-05-07T15:07:28Z</dc:date>
    <item>
      <title>How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314409#M17988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I've got an existing feature class with attachments enabled in SDE. I have a file geodatabase with new features and their related attachments that I want to load into SDE. What is the best practice for loading these new features and attachments into an existing feature class? The data loader only takes the point features. The Add Attachments tool requires the attachments to be in a folder as individual files. Any ideas?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2014 15:07:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314409#M17988</guid>
      <dc:creator>MikeSchonlau</dc:creator>
      <dc:date>2014-05-07T15:07:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314410#M17989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//01m700000041000000" rel="nofollow"&gt;Copy and Paste&lt;/A&gt;&lt;SPAN&gt; the features from File Geodatabse to ArcSDE Geodatabase (Make sure the Geometry and Schema is same). The issue with Copy/Paste feature option is that, the old row will be retained and the new rows will be created in attribute table, once you Paste the feature. The attribures wont be overwritten. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you have only few feature to update in ArcSDE, then its better to update it directly in ArcSDE Gdb.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Attachment can be added after updating the Features in ArcSDE Geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-size: 1; font-style: italic;"&gt;Make sure you have complete &lt;SPAN style="color:&amp;quot;#FF0000&amp;quot;;"&gt;backup&lt;/SPAN&gt; of the database before you try this. &lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 May 2014 10:07:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314410#M17989</guid>
      <dc:creator>NidhinKarthikeyan</dc:creator>
      <dc:date>2014-05-08T10:07:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314411#M17990</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for your feedback, but this workflow does not work for me. By default, the gdb attachments table uses a REL_OBJECTID field to link its features. When the features are copied and pasted or loaded with the data loader into the SDE feature class, the ObjectID's are overwritten. This severs the linkage between the new features and the FGBDB attachments table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I solved my problem with the following steps:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Copied and pasted new FGDB features to SDE feature class&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Added field to FGDB feature class called "NEW_OBJECTID"&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Joined SDE feature class to FGDB feature class using a different common field ("Outfall_ID")&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Field calculated NEWOBJECTID attribute with OBJECTID from SDE feature class&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Added field to FGDB Attachments table called "NEW_OBJECTID"&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Joined FGDB feature class to FGDB attachments table using OBJECTID-to-REL_OBJECTID&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Field calculated NEW_OBJECTID attribute in FGDB attachments table using NEW_OBJECTID from FGDB feature class&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Used data loader to load FGDB attachments table into SDE attachments table specifying REL_OBJECTID as the target and NEW_OBJECTID as the matching field&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;&lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 May 2014 14:26:19 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314411#M17990</guid>
      <dc:creator>MikeSchonlau</dc:creator>
      <dc:date>2014-05-13T14:26:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314412#M17991</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That is just an awesome solution! Though it seems that there should be an easier way, your solution works like a charm. Thanks, I've been fretting over this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Apr 2016 21:15:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314412#M17991</guid>
      <dc:creator>ShannonPugh</dc:creator>
      <dc:date>2016-04-05T21:15:33Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314413#M17992</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I recently tried this method, and it seemed to work after the first step!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks Mike&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Sep 2017 21:10:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314413#M17992</guid>
      <dc:creator>JamesFieman</dc:creator>
      <dc:date>2017-09-06T21:10:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314414#M17993</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I was able to use the Append(Data Management) tool.&amp;nbsp; It brought over the the feature and kept the relationship with&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;REL_OBJECTID intact.&amp;nbsp;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 17:13:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314414#M17993</guid>
      <dc:creator>JenniferCasey1</dc:creator>
      <dc:date>2018-10-29T17:13:32Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314415#M17994</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Really? Which version of ArcGIS Desktop are you using?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 17:48:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314415#M17994</guid>
      <dc:creator>ShannonPugh</dc:creator>
      <dc:date>2018-10-29T17:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314416#M17995</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using 10.5.1 and there are no duplicate Global IDs between my FGDB and SDE.&amp;nbsp;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Oct 2018 20:08:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/314416#M17995</guid>
      <dc:creator>JenniferCasey1</dc:creator>
      <dc:date>2018-10-29T20:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to load features + attachments from FGDB to existing SDE GDB</title>
      <link>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/1037355#M43143</link>
      <description>&lt;P&gt;Append worked well in ArcGIS Pro also.&lt;/P&gt;</description>
      <pubDate>Tue, 16 Mar 2021 21:23:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/how-to-load-features-attachments-from-fgdb-to/m-p/1037355#M43143</guid>
      <dc:creator>ShannonPugh</dc:creator>
      <dc:date>2021-03-16T21:23:21Z</dc:date>
    </item>
  </channel>
</rss>

