<?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: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances? in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346989#M19821</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We have come to the conclusion that our problems of Data PUmp not working are related to Oracle Note, Ora-21700 Object Does Not Exist Or Is Marked For Delete When Dropping a User With ST_GEOMETRY Dependencies [ID 1385929.1].&amp;nbsp; Dictionary gets corrupted when tables using a specific object type (SDE.ST_GEOMETRY) are tried to be dropped after the type was tried to get dropped.&amp;nbsp;&amp;nbsp;&amp;nbsp; This corruption in the dictionary may have affected the DBMS_DATAPUMP package.&amp;nbsp; I have tried re-installing the package with no success.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI has a note on the subject of dropping the user SDE and/or other users who use the ST_GEOMETRY datatype, &lt;/SPAN&gt;&lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/34483"&gt;http://support.esri.com/en/knowledgebase/techarticles/detail/34483&lt;/A&gt;&lt;SPAN&gt;. Drop the users using the ST_GEOMETRY, before dropping the SDE user, not the other way around.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, we use the SDE for business.&amp;nbsp; We are in the midst of moving the instance to a new server and have been pulling our hair out trying to move SDE.&amp;nbsp; On our source database, Data Pump is broken with no solution from Oracle Support to fix it.&amp;nbsp; Now the new destination database has a broken Data Pump as well with some schemas up and running in production.&amp;nbsp; We are working towards re-building the instance, re-build SDE from scratch and bring in the other schemas again.&amp;nbsp;&amp;nbsp; And be very clear which user schemas use the ST_GEOMETRY datatype and never drop them!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 13 Mar 2012 17:10:40 GMT</pubDate>
    <dc:creator>JaneLamont</dc:creator>
    <dc:date>2012-03-13T17:10:40Z</dc:date>
    <item>
      <title>Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346982#M19814</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;What is the current recommended way to move versioned feature classses having ST_GEOMETRY columns from one 11gR2 Oracle instance to another? Is this supported at all with datapump? The primary use case: developers want occassional data refreshes from production spatial data on another instance at the same Oracle/SDE version. Another use case might be for recovery. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have tried using datapump and had errors like the following for any FC with an ST_GEOMETRY column:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-31693: Table data object "&amp;lt;schema here&amp;gt;"."&amp;lt;feature class here&amp;gt;" failed to load/unload and is being skipped due to error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-02354: error in exporting/importing data&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-00600: internal error code, arguments: [kpudpxcs_ctxConvertStream_ref_1], [SYS_TYPEID("SHAPE")], [], [], [], [], [], [], [], [], [], []&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We've used expdp and impdp in various ways and always get the same type of error above.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We've tried:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;* Exported SDE and all data owner schemas in one expdp statement; then used impdp to import all schemas simultaneously with that dump file&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;* Exported SDE and data owner schemas with separate expdp statements; then imported the SDE first and data owner schemas afterwards&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;In a related thread from a year ago (where I'd asked about using datapump to go from a 10g to 11g instance), some suggested that datapump wasn't up to this sort of task; that there were too many dependencies like PUBLIC synonyms and various grants to PUBLIC, etc. Does that hold true for the 11.2.0.2 incarnation of datapump working with ArcSDE 9.3.1 SP2?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We are using:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Oracle version: 11.2.0.2 on RHEL 5.4&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SDE version: 9.3.1 SP2&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What options do we have considering ST_GEOMETRY is a "user defined" data type? It makes sense to me that the SDE schema should be imported first to get ST_GEOMETRY created; presuming the type lives in the SDE schema as it seems to. Here is an object count from the Oracle source instance:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;select owner, object_type, count(*) from dba_objects where owner = 'SDE' and object_type like '%TYPE%' group by owner, object_type order by object_type;

OWNER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OBJECT_TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; COUNT(*)
------------------------------ ------------------- ----------
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INDEXTYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 1
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 39
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE BODY&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; 24
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;After importing, the Oracle target instance has only 31 TYPEs under the SDE schema. It is missing the following 8. However, all %TYPE% objects that *did* import have a status of VALID. So again, here are objects that are valid on the source instance but missing on the target instance. Not sure datapump even complained about these. I noticed they all have subobject names:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;
OWNER&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OBJECT_TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; OBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBOBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STATUS
------------------------------ ------------------- ------------------------------ -----------------------------
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_4&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_5&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_STATS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_3&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_STATS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_2&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
SDE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; TYPE&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ST_DOMAIN_STATS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UPDATE:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Would doing a datapump import of the SDE schema first (which has been error-free for us), creating public synonyms as recommended by the KB article below, *then* importing the data owner schemas be a good workaround? Or are we looking at having to use the full option in datapump to make things work?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;STRONG&gt;Exporting and importing an Oracle SDE schema does not include public synonyms&lt;/STRONG&gt;&lt;BR /&gt;&lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/34328" rel="nofollow noopener noreferrer" target="_blank"&gt;http://support.esri.com/en/knowledgebase/techarticles/detail/34328&lt;/A&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:20:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346982#M19814</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2021-12-11T16:20:56Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346983#M19815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dana,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I have encountered the exact problem and symptoms as you have described, with my Oracle 11.2.0.3 and SDE 9.3.&amp;nbsp; How to move the data between instances?&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;We have also encountered in 3 databases that Data Pump broke.&amp;nbsp; Rebuilding the DBMS_DATAPUMP PL/SQL package has not been successful. Oracle Support has designated it a bug, 13829814, with their development.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Through testing or rebuilding instances and bringing in the SDE data that the SDE data breaks Data Pump.&amp;nbsp;&amp;nbsp; Then yesterday I encountered the same errors as yours.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;The previous thread of using export/import with the grants to PUBLIC is being tested as I write.&amp;nbsp; Please keep this thread updated with any new information as I will also.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Jane&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Mar 2012 21:46:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346983#M19815</guid>
      <dc:creator>JaneLamont</dc:creator>
      <dc:date>2012-03-09T21:46:35Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346984#M19816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Dana,&lt;BR /&gt;I have encountered the exact problem and symptoms as you have described, with my Oracle 11.2.0.3 and SDE 9.3.&amp;nbsp; How to move the data between instances?&amp;nbsp; &lt;BR /&gt;We have also encountered in 3 databases that Data Pump broke.&amp;nbsp; Rebuilding the DBMS_DATAPUMP PL/SQL package has not been successful. Oracle Support has designated it a bug, 13829814, with their development.&lt;BR /&gt;Through testing or rebuilding instances and bringing in the SDE data that the SDE data breaks Data Pump.&amp;nbsp;&amp;nbsp; Then yesterday I encountered the same errors as yours.&lt;BR /&gt;The previous thread of using export/import with the grants to PUBLIC is being tested as I write.&amp;nbsp; Please keep this thread updated with any new information as I will also.&lt;BR /&gt;Thanks,&lt;BR /&gt;Jane&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Jane. Sorry for your troubles and hope you succeed. I'll add to the thread if we have any success. Hoping others out there can comment since data migration is a fundamental function. But not something I've seen definitively addressed where ST_GEOMETRY is concerned.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suppose one solution (compromise) might be to jettison ST_GEOMETRY completely and convert to SDE_LOB. Another might be to use RMAN to clone an instance. I wonder if datapump failing is specific to Esri's ST_GEOMETRY UDT (User Defined Type). Or if the datapump problem exists for migrating UDTs from a variety of vendors. Based on some other issues we've had with ST_GEOMETRY, I wonder if it's best to switch to SDE_LOB unless ST_GEOMETRY spatial *functions* are an absolute business requirement.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Mar 2012 15:15:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346984#M19816</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-10T15:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346985#M19817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;SDE.ST_GEOMETRY has consistently better performance than SDE_LOB.&amp;nbsp; You should&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;evaluate the cost of moving to LOBs before deciding to do so.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 10 Mar 2012 19:44:30 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346985#M19817</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2012-03-10T19:44:30Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346986#M19818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;SDE.ST_GEOMETRY has consistently better performance than SDE_LOB.&amp;nbsp; You should&lt;BR /&gt;evaluate the cost of moving to LOBs before deciding to do so.&lt;BR /&gt;&lt;BR /&gt;- V&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Vince. I have also heard the opposite. In principle ST_GEOMETRY should be consistently faster. But I don't know if that's the result for every customer on every sub-platform. Seems reasonable to test in one's own environment to see what is actually the case. That said, what to do about migrating feature classes with the ST_GEOMETRY User Defined Type? Is there a current Best Practice? Is datapump no longer recommended (if it ever was), etc? It's also been recommended to me to use RMAN to clone a DB instance as a means of moving ST_GEOMETRY-based data from instance to instance.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dana&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 11:42:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346986#M19818</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-12T11:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346987#M19819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I can replicate your missing SDE types.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;There is 1 missing subobject:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;OBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBOBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STATUS&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;------------------------------ ------------------------------ ----------&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Mar 2012 15:07:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346987#M19819</guid>
      <dc:creator>JaneLamont</dc:creator>
      <dc:date>2012-03-12T15:07:29Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346988#M19820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I can replicate your missing SDE types.&lt;BR /&gt;There is 1 missing subobject:&lt;BR /&gt;OBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; SUBOBJECT_NAME&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; STATUS&lt;BR /&gt;------------------------------ ------------------------------ ----------&lt;BR /&gt;ST_DOMAIN_METHODS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; $VSN_1&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; VALID&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No progress here. Jane, are you using ST_GEOMETRY because it's the default spatial data type for SDE on Oracle, because you have a business requirement for spatial SQL functions, or another reason? For us, SQL functions were a "nice to have." Don't know that anyone is currently using them. And what's very much not nice to have: limited options for moving data around. I believe we also chose it because of a belief that ST_GEOMETRY being the default spatial data type means it would be the focus of future development.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 08:00:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346988#M19820</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-13T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346989#M19821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;We have come to the conclusion that our problems of Data PUmp not working are related to Oracle Note, Ora-21700 Object Does Not Exist Or Is Marked For Delete When Dropping a User With ST_GEOMETRY Dependencies [ID 1385929.1].&amp;nbsp; Dictionary gets corrupted when tables using a specific object type (SDE.ST_GEOMETRY) are tried to be dropped after the type was tried to get dropped.&amp;nbsp;&amp;nbsp;&amp;nbsp; This corruption in the dictionary may have affected the DBMS_DATAPUMP package.&amp;nbsp; I have tried re-installing the package with no success.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ESRI has a note on the subject of dropping the user SDE and/or other users who use the ST_GEOMETRY datatype, &lt;/SPAN&gt;&lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/34483"&gt;http://support.esri.com/en/knowledgebase/techarticles/detail/34483&lt;/A&gt;&lt;SPAN&gt;. Drop the users using the ST_GEOMETRY, before dropping the SDE user, not the other way around.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Yes, we use the SDE for business.&amp;nbsp; We are in the midst of moving the instance to a new server and have been pulling our hair out trying to move SDE.&amp;nbsp; On our source database, Data Pump is broken with no solution from Oracle Support to fix it.&amp;nbsp; Now the new destination database has a broken Data Pump as well with some schemas up and running in production.&amp;nbsp; We are working towards re-building the instance, re-build SDE from scratch and bring in the other schemas again.&amp;nbsp;&amp;nbsp; And be very clear which user schemas use the ST_GEOMETRY datatype and never drop them!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 13 Mar 2012 17:10:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346989#M19821</guid>
      <dc:creator>JaneLamont</dc:creator>
      <dc:date>2012-03-13T17:10:40Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346990#M19822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;We have come to the conclusion that our problems of Data PUmp not working are related to Oracle Note, Ora-21700 Object Does Not Exist Or Is Marked For Delete When Dropping a User With ST_GEOMETRY Dependencies [ID 1385929.1].&amp;nbsp; Dictionary gets corrupted when tables using a specific object type (SDE.ST_GEOMETRY) are tried to be dropped after the type was tried to get dropped.&amp;nbsp;&amp;nbsp;&amp;nbsp; This corruption in the dictionary may have affected the DBMS_DATAPUMP package.&amp;nbsp; I have tried re-installing the package with no success.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;ESRI has a note on the subject of dropping the user SDE and/or other users who use the ST_GEOMETRY datatype, &lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/34483"&gt;http://support.esri.com/en/knowledgebase/techarticles/detail/34483&lt;/A&gt;. Drop the users using the ST_GEOMETRY, before dropping the SDE user, not the other way around.&lt;BR /&gt;&lt;BR /&gt;Yes, we use the SDE for business.&amp;nbsp; We are in the midst of moving the instance to a new server and have been pulling our hair out trying to move SDE.&amp;nbsp; On our source database, Data Pump is broken with no solution from Oracle Support to fix it.&amp;nbsp; Now the new destination database has a broken Data Pump as well with some schemas up and running in production.&amp;nbsp; We are working towards re-building the instance, re-build SDE from scratch and bring in the other schemas again.&amp;nbsp;&amp;nbsp; And be very clear which user schemas use the ST_GEOMETRY datatype and never drop them!&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hi Jane,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for posting your findings. Sorry you're having so much trouble. We may ask our customer to open a ticket with Esri. Although the support forums are terrific, they aren't intended to be a replacement for Esri Support. Many problems can be solved here but this issue is particularly stubborn / tricky. I cannot open a ticket myself so I can only suggest it as an option.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Incidentally, at a class this week on Oracle Enterprise Manager (Grid Control) I mentioned the datapump issue to an instructor. His take was that many 3rd party UDTs have trouble with datapump. My (over-?)interpretation: Esri may be the victim here, not the culprit. Still, it would be nice to have official guidance. I'll post an update if we open a ticket or have success in some other way.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;What about using a file geodatabase as an intermediate medium for versioned feature classes? There's no ST_GEOMETRY for Oracle spatial data type in a file GDB (naturally). But I wonder if the customer could run a Python geoprocessing task to recreate things as ST_GEOMETRY from a FGDB source to the desired Oracle target. Anyone done this? It's not entirely clear to me if the customer needs versioned edits and state trees preserved during the migration process. Will ask for clarification. Likely overthinking this?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Happy Friday. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Best,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Dana&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Mar 2012 10:05:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346990#M19822</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-16T10:05:34Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346991#M19823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Our service request with Oracle is not providing workarounds, tips or solutions for working with SDE to avoid the data dictionary corruption or avoiding the breakage of Data Pump. We have just rebuilt SDE manually in another database so have a good export to try importing into another working instance, hopefully not breaking Data Pump and keeping the d.d. intact and no missing ST_GEOMETRY data types.&amp;nbsp; I have just completed a support call to ESRI for their help.&amp;nbsp; I will keep you updated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Jane&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 14:46:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346991#M19823</guid>
      <dc:creator>JaneLamont</dc:creator>
      <dc:date>2012-03-20T14:46:05Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346992#M19824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Our service request with Oracle is not providing workarounds, tips or solutions for working with SDE to avoid the data dictionary corruption or avoiding the breakage of Data Pump. We have just rebuilt SDE manually in another database so have a good export to try importing into another working instance, hopefully not breaking Data Pump and keeping the d.d. intact and no missing ST_GEOMETRY data types.&amp;nbsp; I have just completed a support call to ESRI for their help.&amp;nbsp; I will keep you updated.&lt;BR /&gt;Jane&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the update Jane. If and when our downstream customer opens a support ticket with Esri I will also report any findings.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Mar 2012 15:30:22 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346992#M19824</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-20T15:30:22Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346993#M19825</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Still working this issue. No support ticket has been opened yet as far as I know.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;At an Oracle 11.2 upgrade and migration seminar yesterday, I asked Roy Swonger (owner of the dev group for various Oracle utilities) what datapump could and could not handle regarding User Defined Types (UDTs)--because he'd mentioned limitations using Oracle Streams (and was promoting Oracle Golden Gate--which sounds quite cool by the way; similar to cross-DB vendor platform GDB replication evidently). He claimed datapump could handle all UDTs but not long/long raw data types and anything having Nested Tables. That answer didn't correspond with what some other Oracle professionals have told me. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, is Esri's ST_GEOMETRY Oracle UDT implemented in some way with Nested Tables? Maybe it's time to post to Oracle-L @ freelists.org to find a Best Practice when migrating versioned Feature Classes containing ST_GEOMETRY columns. Seems difficult to obtain posting privileges there. So if anyone here with posting privileges to Oracle-L would like to crowdsource an answer there, please feel free. The official Oracle forums haven't been the most nurturing environment I've participated in...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The upgrade and migration seminar was free and I learned quite a lot from it. Highly recommended to attend if one is coming to a town near you. Check this site for dates:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="https://blogs.oracle.com/upgrade/"&gt;https://blogs.oracle.com/upgrade/&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The slides used for the seminar are here:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://apex.oracle.com/pls/apex/f?p=202202:2:::::P2_SUCHWORT:migrate112"&gt;http://apex.oracle.com/pls/apex/f?p=202202:2:::::P2_SUCHWORT:migrate112&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;... or go to the Oracle Upgrade Blog, scroll to the right, and look for a heading named &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;Slides Download Center&lt;/SPAN&gt;&lt;SPAN&gt;. Very informative.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 29 Mar 2012 10:40:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346993#M19825</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-03-29T10:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346994#M19826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi all,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I am new to ESRI. We have just configured a geodatabase in our 11.2.0.3 Oracle database and have the same problem as you. If we perform a expdp of SDE schema we get an error. We are using arcSDE 10.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We only have one schema using the ST_GEOMETRY datatype, the one containing the SDE objects.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;ORA-39127: error inesperado de la llamada a local_str := SYS.DBMS_EXPORT_EXTENSION.GET_DOMAIN_INDEX_METADATA('&amp;lt;index_name&amp;gt;','&amp;lt;schema_name&amp;gt;','ST_DOMAIN_METHODS','&amp;lt;schema_name&amp;gt;',11.02.00.00.00,newblock,0)
ORA-06502: PL/SQL: error : character to number conversion error numérico o de valor
ORA-06512: en "SYS.DBMS_EXPORT_EXTENSION", línea 270
ORA-06512: en línea 1
ORA-06512: en "SYS.DBMS_METADATA", línea 8360&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We can get avoid this error droping the index prior to the expdp and recreate it afterwards, but in any case we get a lot of errors when doing an impdp of SDE schema.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;KUP-11007: conversion error loading table "&amp;lt;schema&amp;gt;"."&amp;lt;feature_class&amp;gt;"
ORA-00600: internal error code, arguments: [kpudpxcs_ctxConvertStream_ref_1], [SYS_TYPEID("SHAPE")], [], [], [], [], [], [], [], [], [], []
ORA-31693: Fallo del objeto de datos de tabla "&amp;lt;schema&amp;gt;"."&amp;lt;feature_class&amp;gt;" al cargarse/descargarse y se está saltando debido al error:
ORA-29913: error al ejecutar la llamada de ODCIEXTTABLEFETCH
ORA-26062: No se puede continuar desde los errores anteriores.
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;We have an open SR to Oracle without solution so far.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Inaki&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:20:59 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346994#M19826</guid>
      <dc:creator>InakiSanchez</dc:creator>
      <dc:date>2021-12-11T16:20:59Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346995#M19827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Inaki,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you apply any service pack for ArcSDE 10? There is a fix for this in ArcSDE SP3, try to apply sp3 to ArcSDE and upgrade your database to see if the problem resolves.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Shwu-Jing&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi all,&lt;BR /&gt;&lt;BR /&gt;I am new to ESRI. We have just configured a geodatabase in our 11.2.0.3 Oracle database and have the same problem as you. If we perform a expdp of SDE schema we get an error. We are using arcSDE 10.&lt;BR /&gt;&lt;BR /&gt;We only have one schema using the ST_GEOMETRY datatype, the one containing the SDE objects.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;ORA-39127: error inesperado de la llamada a local_str := SYS.DBMS_EXPORT_EXTENSION.GET_DOMAIN_INDEX_METADATA('&amp;lt;index_name&amp;gt;','&amp;lt;schema_name&amp;gt;','ST_DOMAIN_METHODS','&amp;lt;schema_name&amp;gt;',11.02.00.00.00,newblock,0)
ORA-06502: PL/SQL: error : character to number conversion error numérico o de valor
ORA-06512: en "SYS.DBMS_EXPORT_EXTENSION", línea 270
ORA-06512: en línea 1
ORA-06512: en "SYS.DBMS_METADATA", línea 8360&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;We can get avoid this error droping the index prior to the expdp and recreate it afterwards, but in any case we get a lot of errors when doing an impdp of SDE schema.&lt;BR /&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;KUP-11007: conversion error loading table "&amp;lt;schema&amp;gt;"."&amp;lt;feature_class&amp;gt;"
ORA-00600: internal error code, arguments: [kpudpxcs_ctxConvertStream_ref_1], [SYS_TYPEID("SHAPE")], [], [], [], [], [], [], [], [], [], []
ORA-31693: Fallo del objeto de datos de tabla "&amp;lt;schema&amp;gt;"."&amp;lt;feature_class&amp;gt;" al cargarse/descargarse y se está saltando debido al error:
ORA-29913: error al ejecutar la llamada de ODCIEXTTABLEFETCH
ORA-26062: No se puede continuar desde los errores anteriores.
&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;We have an open SR to Oracle without solution so far.&lt;BR /&gt;&lt;BR /&gt;Thanks,&lt;BR /&gt;&lt;BR /&gt;Inaki&lt;/BLOCKQUOTE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Dec 2021 16:21:01 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346995#M19827</guid>
      <dc:creator>Shwu-jingJeng</dc:creator>
      <dc:date>2021-12-11T16:21:01Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346996#M19828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;1. Follow sde installation procedures to create the SDE schema in database B&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;2. Drop all the triggers and sequences in the SDE schema in database B&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;3. Drop all the user schemas (if any exist) in database B&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;4. Create the user schemas and assign privilege grants in database B&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;5. Expdp the SDE and user schemas in database A&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;6. Impdp the SDE and user schemas in database B using the TABLE_EXISTS_ACTION=REPLACE&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Steps 2 through 6 can be performed repetitively via a script to refresh database B with all changes in database A.&amp;nbsp; Impdp will generate a lot of SDE schema errors because it can't create/replace objects that already exist, but those objects are not data related so no worries.&amp;nbsp; Just rememeber to keep your SDE schemas in database A and B the same version by performing the SDE install and patching in both places.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Jun 2012 20:11:54 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346996#M19828</guid>
      <dc:creator>AlanStearns</dc:creator>
      <dc:date>2012-06-27T20:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346997#M19829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hi Dana,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It sounds like you might be running into an oracle problem with datapump. Check out the following oracle document and bug:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ora-22809 Nonexistent Attribute Creating Table With Sde.St_geometry Type [ID 1411854.1]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Bug filed with Datapump:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Bug 13693393 - ORA-600: [KPUDPXCS_CTXCONVERTSTREAM_REF_1], [SYS_TYPEID("SHAPE")] DURING IMPORT&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 29 Jun 2012 14:12:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346997#M19829</guid>
      <dc:creator>ForrestJones</dc:creator>
      <dc:date>2012-06-29T14:12:21Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346998#M19830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the Oracle bug number on the ORA-600 error during SDE schema datapump import F J. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm running 11.2.0.2 and had to install interim patch 13451606 to fix datapump bugs 11895713 and 12794090 as none of my spatial views would make it over due to a missing select statement error.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Using the workaround I posted last week, I also consistently see the following errors on the SDE.ST_GEOMETRY_INDEX table, however the errors are not valid as the table does get updated.&amp;nbsp; It's the only table where an ORA-31693 is reported ... not sure what makes it different from all other tables.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-31693: Table data object "SDE"."ST_GEOMETRY_INDEX" failed to load/unload and is being skipped due to error:&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;ORA-02354: error in exporting/importing data&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Jul 2012 12:25:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346998#M19830</guid>
      <dc:creator>AlanStearns</dc:creator>
      <dc:date>2012-07-02T12:25:50Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346999#M19831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Hi Dana,&lt;BR /&gt;&lt;BR /&gt;It sounds like you might be running into an oracle problem with datapump. Check out the following oracle document and bug:&lt;BR /&gt;&lt;BR /&gt;Ora-22809 Nonexistent Attribute Creating Table With Sde.St_geometry Type [ID 1411854.1]&lt;BR /&gt;&lt;BR /&gt;Bug filed with Datapump:&lt;BR /&gt;Bug 13693393 - ORA-600: [KPUDPXCS_CTXCONVERTSTREAM_REF_1], [SYS_TYPEID("SHAPE")] DURING IMPORT&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Fojo. In My Oracle Support (MOS), a search for Bug 13693393 beneath Patches &amp;amp; Updates &amp;gt; Number/Name or Bug Number (Simple) with Bug Number selected from the drop down and 13693393 in the search box revealed nothing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Does this mean the bug hasn't been fixed yet or was so recently submitted that it's not appearing the the search? Presuming User Error on my part and will keep looking.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;[UPDATE: MOS ID 1411854.1 reports the bug in Data Pump has not yet been fixed; and to use suggested workarounds]&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;This all looks a bit hairy, and Esri Tech Support seems to conclusively consider this an Oracle Corp issue; not an Esri one. Wherever the truth lay, is there any easier way to handle this? Like using RMAN cloning to refresh a Recovery instance with data from a source instance? Would be interested in reading about this as a potential approach. One we eventually have Snap Manager for Oracle (SMO) configured with our NetApp storage, would SMO cloning be something worth looking into? Oracle Corp and NetApp jointly seem to tout SMO cloning as a key functionality that's a great boon to developers needing refresh data and an isolated instance to work against. That capability sounds a bit to me like ArcSDE Versioning in its approach.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 21 Aug 2012 13:51:39 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/346999#M19831</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2012-08-21T13:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/347000#M19832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;does anybody knows any workaround for this problem ?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;its really frustrating ....&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Dec 2013 07:54:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/347000#M19832</guid>
      <dc:creator>EmadAl-Mousa</dc:creator>
      <dc:date>2013-12-02T07:54:27Z</dc:date>
    </item>
    <item>
      <title>Re: Best way to move versioned ST_GEOMETRY FCs between Oracle 11gR2 instances?</title>
      <link>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/347001#M19833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Bump. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Need to potentially migrate an ArcSDE Oracle 11.2.0.2 instance (on a physical server running RHEL x86-64) to a VM host running RHEL x86-64, upgrading to Oracle 11.2.0.4 by the end of the process. What method should we use and which sequencing for the upgrade process? This is for an instance using ASM diskgroups if that helps any. So it's Grid Infrastructure (GI) "Oracle Restart" but not a RAC installation.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I say "potentially migrate" because it's presently being decided (by the customer) whether to stay on physical servers (out of place same server upgrade--easy) or migrate to VMWare VMs, where most of our other Oracle instances live--and certainly any newly created Oracle instances run on VMs. Easier to manage a homogenous environment in my opinion.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;No more PSUs being released for Oracle 11.2.0.2. And I understand the last PSU for Oracle 11.2.0.3 for Linux x86-64 is scheduled to be July 2015.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If you've had to do a similar migration, what upgrade path did you take? And what method did you use? Or if you're in planning mode for this, what method are you considering and why?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks in advance.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Apr 2014 17:55:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/best-way-to-move-versioned-st-geometry-fcs-between/m-p/347001#M19833</guid>
      <dc:creator>danan</dc:creator>
      <dc:date>2014-04-07T17:55:25Z</dc:date>
    </item>
  </channel>
</rss>

