<?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: Performance in Writing to an Oracle SDE Instance in ArcObjects SDK Questions</title>
    <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232548#M6055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;A file gdb will almost always outperform an entreprise gdb.&amp;nbsp; The model is much, much simpler, you are just writing to a file on your hard drive.&amp;nbsp; As long as on-access scanner isn't killing the performance it will be much faster.&lt;BR /&gt;&lt;BR /&gt;For the code side, I would consider not using an edit session or at least not use an edit operation if you can get away with it.&amp;nbsp; The option to turn off the undo/redo doesn't always work &lt;SPAN style="font-style:italic;"&gt;(Note that the supression of undo/redo logging is not supported for remote database workspaces.&lt;/SPAN&gt;)&amp;nbsp; I would consider using an insert cursor and calling flush every so many records (100? something to experiment with.)&amp;nbsp; CreateFeature for sure will create an objectId for each call when it is called so, right there sql statements are being generated one at the time...&lt;BR /&gt;&lt;BR /&gt;I suggest you look at the following link and avoid creating the features one by one.&amp;nbsp; There are more direct ways of doing this.&amp;nbsp; If you need to process the data, you can do that in the fgdb and then load.&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;From the database side, a lot can be done tweak the performance.&amp;nbsp; The trick is to know what is holding you up.&amp;nbsp; Do you have versioning?&amp;nbsp; How big is the user temp space?&amp;nbsp; What is going on with the roll back log?&amp;nbsp; Do you have replication?&amp;nbsp; These are some of the&amp;nbsp; many things you need to master to get performance out of your database. A good orace DBA can be invaluable in figuring out performance on the Oracle side.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;You can also consider using spatial SQL to insert the features directly through the SQL geodatabase API&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I have also dabbled in exporting recordsets into XML and importing them as a new featureclass in Oracle, maybe that can work for you.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Variable size sample sets, some good metrics and some experimentation, I think you will find an efficient way of doing this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alexander -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much for your comments and suggestions.&amp;nbsp; While investigating some of the options you put forth I had a breakthrough.&amp;nbsp; I tried to use the ArcCatalog simple data load and found it to fail.&amp;nbsp; At that point I realized my classes were registered for use with the ArcFM software -- custom GeoObjects.&amp;nbsp; I unregistered the classes and found performance improve dramatically.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not quite at the speed of the FGDB -- but pretty close to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again - you pointed me in the right direction!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ed&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Feb 2014 20:35:18 GMT</pubDate>
    <dc:creator>EdwardBlair</dc:creator>
    <dc:date>2014-02-12T20:35:18Z</dc:date>
    <item>
      <title>Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232544#M6051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Hello ???&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;I???ve got a process that???s built in C# using ArcObjects v10.1 that reads data from a feature class in a source File Geodatabase, applies updates to attributes and sometimes the shape, and writes a new feature to a target feature class in another File geodatabase.&amp;nbsp; This works fine.&amp;nbsp; As a typical example in one case it reads and writes about 120,000 features in 4 minutes.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Now I need to update the process to write to an Oracle SDE instance.&amp;nbsp; Overall it works, its just much slower.&amp;nbsp; For example, the process that took 4 minutes to process 120,000 records in an FGDB takes 18 minutes in Oracle.&amp;nbsp;&amp;nbsp;&amp;nbsp; This alone would be OK.&amp;nbsp; My issue is that I???ve got some processes that take hours in the FGDB.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;As part of the updates for Oracle I???ve switched to use of IFeatureClassWrite::Write instead of IFeature::Store that I was using in the FGDB.&amp;nbsp; My understanding is that the FeatureClassWrite doesn't trigger events like Store.&amp;nbsp; However this doesn???t seem to make much difference.&amp;nbsp; Here???s an overview of what the process does.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN style="font-family:Courier New;"&gt;// Get the target workspace&lt;BR /&gt;IWorkspace targetWorkspace = workspaceFactory.OpenFromFile(connectionString, 0);&lt;BR /&gt;IWorkpaceEdit workspaceEdit = (IWorkspaceEdit) targetWorkspace;&lt;BR /&gt;&lt;BR /&gt;// Start editing&lt;BR /&gt;workspaceEdit.StartEditing(false);&lt;BR /&gt;workspaceEdit.StartEditOperation();&lt;BR /&gt;&lt;BR /&gt;// Open the source and target feature classes&lt;BR /&gt;IFeatureWorkspace sourceFeaWorkspace = (IFeatureWorkspace) sourceWorkspace;&lt;BR /&gt;IFeatureClass sourceClass = sourceFeaWorkspace.OpenFeatureClass(sourceClassName);&lt;BR /&gt;&lt;BR /&gt;IFeatureWorkspace feaWorkspace = (IFeatureWorkspace) targetWorkspace;&lt;BR /&gt;IFeatureClass targetClass = feaWorkspace.OpenFeatureClass(targetClassName);&lt;BR /&gt;IFeatureClassWrite fcWrite = (IFeatureClassWrite) targetClass;&lt;BR /&gt;&lt;BR /&gt;// Put the target class in load-only mode and apply a schema lock&lt;BR /&gt;IFeatureClassLoad fcLoad = (IFeatureClassLoad) targetClass;&lt;BR /&gt;ISchemaLock schemaLock = (ISchemaLock) targetClass;&lt;BR /&gt;schemaLock.ChangeSchemaLock(esriSchemaLock.esriExclusiveSchemaLock);&lt;BR /&gt;fcLoad.LoadOnlyMode = true;&lt;BR /&gt;&lt;BR /&gt;// Read from the source and write to the target&lt;BR /&gt;IFeature targetFea = null;&lt;BR /&gt;&lt;BR /&gt;IQueryFilter queryFilter = new QueryFilter();&lt;BR /&gt;IFeatureCursor feaCur = sourceClass.Search(queryFilter,true);&lt;BR /&gt;IFeature sourceFea = feaCur.Next();&lt;BR /&gt;while (sourceFea != null)&lt;BR /&gt;{&lt;BR /&gt;[INDENT]targetFea = targetClass.CreateFeature();&lt;BR /&gt;&lt;BR /&gt; // Update the shape and attributes&lt;BR /&gt;&lt;BR /&gt; // Store the target feature&lt;BR /&gt;&amp;nbsp;&amp;nbsp; fcWrite.WriteFeature(targetFea);&lt;BR /&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; sourceFea = feaCur.Next();&lt;BR /&gt;[/INDENT]&lt;BR /&gt;}&lt;BR /&gt;&lt;BR /&gt;// Stop editing and release lock&lt;BR /&gt;workspaceEdit.StopEditing(true);&lt;BR /&gt;schemaLock.ChangeSchemaLock(esriSchemaLock.esriSharedSchemaLock);&lt;BR /&gt;fcLoad.LoadOnlyMode = false;&lt;BR /&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I???ve also tried grouping features into an ISet and using IFeatureClassWrite::WriteFeatures.&amp;nbsp; No difference in performance.&amp;nbsp; I???ve also tried using an InsertCursor.&amp;nbsp; No difference in performance. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Is it just the case that writing directly to an Oracle SDE instance is 4 to 5 times slower than writing to an FGDB?&amp;nbsp;&amp;nbsp; Any insights or suggestions at all would be much appreciated.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks,&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ed&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 12:17:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232544#M6051</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2014-02-11T12:17:00Z</dc:date>
    </item>
    <item>
      <title>Re: Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232545#M6052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Using IFeature.Store is the slowest way to save changes to a gdb if you're making large numbers of edits.&amp;nbsp; Instead, use IFeatureclass.Update to get an update cursor and call IFeatureCursor.UpdateFeature where you would normally call Store.&amp;nbsp; For creating new features, use IFeatureClass.Insert to get the cursor and IFeatureCursor.InsertFeature.&amp;nbsp; Also, before you start, place the feature classes you're writing to into LoadOnly mode using IFeatureClassLoad.&amp;nbsp; Take them out of LoadOnly mode when you're done.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Feb 2014 12:52:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232545#M6052</guid>
      <dc:creator>NeilClemmons</dc:creator>
      <dc:date>2014-02-11T12:52:25Z</dc:date>
    </item>
    <item>
      <title>Re: Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232546#M6053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;Using IFeature.Store is the slowest way to save changes to a gdb if you're making large numbers of edits.&amp;nbsp; Instead, use IFeatureclass.Update to get an update cursor and call IFeatureCursor.UpdateFeature where you would normally call Store.&amp;nbsp; For creating new features, use IFeatureClass.Insert to get the cursor and IFeatureCursor.InsertFeature.&amp;nbsp; Also, before you start, place the feature classes you're writing to into LoadOnly mode using IFeatureClassLoad.&amp;nbsp; Take them out of LoadOnly mode when you're done.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt; &lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Neil -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks for the reply.&amp;nbsp; As my post says, I'm not using IFeature.Store.&amp;nbsp; I've tried using an insert cursor, as well as WriteFeature and WriteFeatures from the IFeatureClassWrite interface.&amp;nbsp; All are equally slow.&amp;nbsp; My example also shows that I'm using LoadOnly mode.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Forgot to mention that I've removed all indexes from the target class -- except that for ObjectID.&amp;nbsp; And I've remove all relationships.&amp;nbsp; The target is also a simple point feature class - no network or topology defined.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ed&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 18:49:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232546#M6053</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2014-02-12T18:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232547#M6054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A file gdb will almost always outperform an entreprise gdb.&amp;nbsp; The model is much, much simpler, you are just writing to a file on your hard drive.&amp;nbsp; As long as on-access scanner isn't killing the performance it will be much faster.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;For the code side, I would consider not using an edit session or at least not use an edit operation if you can get away with it.&amp;nbsp; The option to turn off the undo/redo doesn't always work &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;(Note that the supression of undo/redo logging is not supported for remote database workspaces.&lt;/SPAN&gt;&lt;SPAN&gt;)&amp;nbsp; I would consider using an insert cursor and calling flush every so many records (100? something to experiment with.)&amp;nbsp; CreateFeature for sure will create an objectId for each call when it is called so, right there sql statements are being generated one at the time...&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I suggest you look at the following link and avoid creating the features one by one.&amp;nbsp; There are more direct ways of doing this.&amp;nbsp; If you need to process the data, you can do that in the fgdb and then load.&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;From the database side, a lot can be done tweak the performance.&amp;nbsp; The trick is to know what is holding you up.&amp;nbsp; Do you have versioning?&amp;nbsp; How big is the user temp space?&amp;nbsp; What is going on with the roll back log?&amp;nbsp; Do you have replication?&amp;nbsp; These are some of the&amp;nbsp; many things you need to master to get performance out of your database. A good orace DBA can be invaluable in figuring out performance on the Oracle side.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You can also consider using spatial SQL to insert the features directly through the SQL geodatabase API&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have also dabbled in exporting recordsets into XML and importing them as a new featureclass in Oracle, maybe that can work for you.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Variable size sample sets, some good metrics and some experimentation, I think you will find an efficient way of doing this.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 20:10:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232547#M6054</guid>
      <dc:creator>AlexanderGray</dc:creator>
      <dc:date>2014-02-12T20:10:45Z</dc:date>
    </item>
    <item>
      <title>Re: Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232548#M6055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;A file gdb will almost always outperform an entreprise gdb.&amp;nbsp; The model is much, much simpler, you are just writing to a file on your hard drive.&amp;nbsp; As long as on-access scanner isn't killing the performance it will be much faster.&lt;BR /&gt;&lt;BR /&gt;For the code side, I would consider not using an edit session or at least not use an edit operation if you can get away with it.&amp;nbsp; The option to turn off the undo/redo doesn't always work &lt;SPAN style="font-style:italic;"&gt;(Note that the supression of undo/redo logging is not supported for remote database workspaces.&lt;/SPAN&gt;)&amp;nbsp; I would consider using an insert cursor and calling flush every so many records (100? something to experiment with.)&amp;nbsp; CreateFeature for sure will create an objectId for each call when it is called so, right there sql statements are being generated one at the time...&lt;BR /&gt;&lt;BR /&gt;I suggest you look at the following link and avoid creating the features one by one.&amp;nbsp; There are more direct ways of doing this.&amp;nbsp; If you need to process the data, you can do that in the fgdb and then load.&lt;BR /&gt;&lt;A href="http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000"&gt;http://help.arcgis.com/en/sdk/10.0/arcobjects_net/conceptualhelp/index.html#//0001000003rp000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;From the database side, a lot can be done tweak the performance.&amp;nbsp; The trick is to know what is holding you up.&amp;nbsp; Do you have versioning?&amp;nbsp; How big is the user temp space?&amp;nbsp; What is going on with the roll back log?&amp;nbsp; Do you have replication?&amp;nbsp; These are some of the&amp;nbsp; many things you need to master to get performance out of your database. A good orace DBA can be invaluable in figuring out performance on the Oracle side.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;You can also consider using spatial SQL to insert the features directly through the SQL geodatabase API&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//006z00000008000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;I have also dabbled in exporting recordsets into XML and importing them as a new featureclass in Oracle, maybe that can work for you.&amp;nbsp; &lt;BR /&gt;&lt;BR /&gt;Variable size sample sets, some good metrics and some experimentation, I think you will find an efficient way of doing this.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Alexander -&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks very much for your comments and suggestions.&amp;nbsp; While investigating some of the options you put forth I had a breakthrough.&amp;nbsp; I tried to use the ArcCatalog simple data load and found it to fail.&amp;nbsp; At that point I realized my classes were registered for use with the ArcFM software -- custom GeoObjects.&amp;nbsp; I unregistered the classes and found performance improve dramatically.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I'm not quite at the speed of the FGDB -- but pretty close to it.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again - you pointed me in the right direction!&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Ed&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Feb 2014 20:35:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232548#M6055</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2014-02-12T20:35:18Z</dc:date>
    </item>
    <item>
      <title>Re: Performance in Writing to an Oracle SDE Instance</title>
      <link>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232549#M6056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just to be clear.&amp;nbsp; What made the big difference in performance for me were two things:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;1.&amp;nbsp; I reverted my target feature classes to core Esri objects.&amp;nbsp; They had inadvertently been left defined as custom object classes as required by the ArcFM application.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;2.&amp;nbsp; Made use of a FeatureBuffer and InsertCursor to create the new features.&amp;nbsp; I flush the buffer after each 2,000 features.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;With these two changes the process that completes in 4 minutes for 120,000 features in a File Geodatabase completes in (about) 4 minutes in the Oracle database.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks again for the responses.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;Ed&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Feb 2014 12:43:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcobjects-sdk-questions/performance-in-writing-to-an-oracle-sde-instance/m-p/232549#M6056</guid>
      <dc:creator>EdwardBlair</dc:creator>
      <dc:date>2014-02-13T12:43:13Z</dc:date>
    </item>
  </channel>
</rss>

