<?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: Non-versioned data slowing way down in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264873#M15309</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A couple of things to consider:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;GUID columns, by their very nature, are always randomly distributed;&lt;/LI&gt;&lt;BR /&gt;this makes for a badly fragmented index, and poor performance if you query &lt;BR /&gt;on them.&lt;BR /&gt;&lt;LI&gt;If the feature data has been gathered over time it is likely badly spatially&lt;/LI&gt;&lt;BR /&gt;fragmented.&amp;nbsp; One of the hallmarks of spatial fragmentation is poor spatial&lt;BR /&gt;query performance, not matter how artfully the spatial index has been tuned.&lt;BR /&gt;There are many possible ways to defragment spatially, but the easiest is&lt;BR /&gt;to do an ORDER BY query on some attribute that imposes spatial order&lt;BR /&gt;(county code, etc).&amp;nbsp; More exotic queries are available if you can use the &lt;BR /&gt;ST functions to group features into bands in X (or Y), then order by Y (or X).&lt;BR /&gt;Note that spatial defragmentation will hurt join performance on other&lt;BR /&gt;query constraints (like time), so that may need to be mitigated.&lt;BR /&gt;&lt;LI&gt;It's unlikely that the default spatial index tuning parameters are best for &lt;/LI&gt;&lt;BR /&gt;these datasets.&amp;nbsp; You should spend some time getting the best performance&lt;BR /&gt;you can from the defragmented data, even to the point of going through&lt;BR /&gt;all tuning combinations if necessary.&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 21 Apr 2014 17:00:25 GMT</pubDate>
    <dc:creator>VinceAngelo</dc:creator>
    <dc:date>2014-04-21T17:00:25Z</dc:date>
    <item>
      <title>Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264869#M15305</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have two unversioned featureclasses in a dataset that our organization adds and deletes up to 10s of thousands of records daily. One is over 3million points and the other is over 500k lines. Each have an organizational ID field with an index and a GlobalID field with an index. We will be versioning and replicating these in the near future. They are getting slower and slower over time, to the point where just deleting a couple records could take 8 minutes and getting a table feature count using the toolbox tool takes 3 minutes. The processing that used to take 1 to 2 hours now takes over 12.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Details:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;SQL Server 2008 R2&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;SDE Release 101010&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Desktop 10.1 sp1&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Each spatial index is built by ESRI (16 cells per object, Medium on all levels)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Data is not in SDE schema, but a separate one&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;There isn't a lot of other data in this database, although there is a single versioned featureclass in a different dataset that has topology rules applied to it.&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;BR /&gt;&lt;SPAN&gt;What I've tried:&lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;I rebuild and reorganize all indexes in this database as needed according to Microsoft documentation&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Checked the Bounding Boxes on the spatial indexes&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Rebuilt statistics (esri tools)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Compressed&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Shrunk database (our DBA does this periodically)&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Restarted server (memory doesn't seem to be the issue)&lt;/LI&gt;&lt;BR /&gt;&lt;/UL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 13:21:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264869#M15305</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-21T13:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264870#M15306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;This has happened in the past and the only way I could find to fix it was to export and recreate the two layers completely. That worked well for about 4 months. This option won't be desirable once we start replicating daily to other agencies.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 13:22:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264870#M15306</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-21T13:22:58Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264871#M15307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;How are those features being added and deleted?&amp;nbsp; Is this being done inside an edit session or outside an edit session?&amp;nbsp; If you're deleting and adding tens of thousands of features on a daily basis, you might want to consider re-building the &lt;/SPAN&gt;&lt;STRONG&gt;spatial &lt;/STRONG&gt;&lt;SPAN&gt;indexes on those feature classes accordingly each time the number of records changes drastically.&amp;nbsp; The need for doing this is rare, but it &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;can &lt;/SPAN&gt;&lt;SPAN&gt;happen depending on how the features are being added/deleted.&amp;nbsp; I also believe this is more likely to happen when the changes are made in an edit session.&amp;nbsp; As an example, a spatial index calculated for 50,000 lines might look much different than a spatial index for 140,000 lines in terms of grid size.&amp;nbsp; Check out these articles to understand a bit more about spatial indexes:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001r000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001r000000&lt;/A&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001s000000"&gt;http://resources.arcgis.com/en/help/main/10.1/index.html#//003n0000001s000000&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;So, your workflow might need to change to something like this at a high level:&lt;/SPAN&gt;&lt;BR /&gt;&lt;OL&gt;&lt;BR /&gt;&lt;LI&gt;Start edit session.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Delete 50,000 lines.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Recalculate the spatial index.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;After several hours, add 80,000 lines.&lt;/LI&gt;&lt;BR /&gt;&lt;LI&gt;Recalculate the spatial index.&amp;nbsp; &lt;/LI&gt;&lt;BR /&gt;&lt;/OL&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 15:12:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264871#M15307</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2014-04-21T15:12:07Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264872#M15308</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for the response. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The records are being deleted by the delete tool and added by the append tool outside of an edit session (python scripted process).&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Like I mentioned, I'm monitoring the indexes and when a spatial index's fragmentation is &amp;gt; 30% I'm rebuilding. If the fragmentation is &amp;gt; 5% and &amp;lt; 30% I'm reorganizing.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've tried using ArcCatalog to Recalculate as well as delete and recreate. It seems to do what the SQL Server functions do and neither improve access and editing times.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 15:53:08 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264872#M15308</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-21T15:53:08Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264873#M15309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;A couple of things to consider:&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;GUID columns, by their very nature, are always randomly distributed;&lt;/LI&gt;&lt;BR /&gt;this makes for a badly fragmented index, and poor performance if you query &lt;BR /&gt;on them.&lt;BR /&gt;&lt;LI&gt;If the feature data has been gathered over time it is likely badly spatially&lt;/LI&gt;&lt;BR /&gt;fragmented.&amp;nbsp; One of the hallmarks of spatial fragmentation is poor spatial&lt;BR /&gt;query performance, not matter how artfully the spatial index has been tuned.&lt;BR /&gt;There are many possible ways to defragment spatially, but the easiest is&lt;BR /&gt;to do an ORDER BY query on some attribute that imposes spatial order&lt;BR /&gt;(county code, etc).&amp;nbsp; More exotic queries are available if you can use the &lt;BR /&gt;ST functions to group features into bands in X (or Y), then order by Y (or X).&lt;BR /&gt;Note that spatial defragmentation will hurt join performance on other&lt;BR /&gt;query constraints (like time), so that may need to be mitigated.&lt;BR /&gt;&lt;LI&gt;It's unlikely that the default spatial index tuning parameters are best for &lt;/LI&gt;&lt;BR /&gt;these datasets.&amp;nbsp; You should spend some time getting the best performance&lt;BR /&gt;you can from the defragmented data, even to the point of going through&lt;BR /&gt;all tuning combinations if necessary.&lt;BR /&gt;&lt;/UL&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 17:00:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264873#M15309</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2014-04-21T17:00:25Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264874#M15310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;&lt;BR /&gt;&lt;UL&gt;&lt;BR /&gt;&lt;LI&gt;If the feature data has been gathered over time it is likely badly spatially&lt;/LI&gt;&lt;BR /&gt;fragmented.&amp;nbsp; One of the hallmarks of spatial fragmentation is poor spatial&lt;BR /&gt;query performance, not matter how artfully the spatial index has been tuned.&lt;BR /&gt;There are many possible ways to defragment spatially, but the easiest is&lt;BR /&gt;to do an ORDER BY query on some attribute that imposes spatial order&lt;BR /&gt;(county code, etc).&amp;nbsp; More exotic queries are available if you can use the &lt;BR /&gt;ST functions to group features into bands in X (or Y), then order by Y (or X).&lt;BR /&gt;Note that spatial defragmentation will hurt join performance on other&lt;BR /&gt;query constraints (like time), so that may need to be mitigated.&lt;BR /&gt;&lt;/UL&gt;&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks Vince, I'd like to look into how I can reorder the data without reloading it. How do I go about using an ORDER BY like you mentioned to defragment spatially? Are you referring to enforcing order during spatial index creation or just on queries to the db?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 21 Apr 2014 20:39:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264874#M15310</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-21T20:39:58Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264875#M15311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;You can't defragment without reloading -- it's the load order which makes it fragmented.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;One possible methodology is to create a backup table with &lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;CREATE TABLE mytab_backup AS
SELECT * FROM mytab_backup&lt;/PRE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Then TRUNCATE the original, and execute&amp;nbsp; something like&lt;/SPAN&gt;&lt;BR /&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;INSERT INTO mytab
SELECT * FROM mytab_backup 
ORDER BY county_fips
&lt;/PRE&gt;&lt;SPAN&gt; &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, 11 Dec 2021 12:58:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264875#M15311</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2021-12-11T12:58:00Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264876#M15312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I'm still unable to get the two layers back to where they were a few weeks ago. They continue to get worse by the week &lt;span class="lia-unicode-emoji" title=":disappointed_face:"&gt;😞&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've followed your suggestion, ordering the geometries by the districts they are in, proved by using the TOP keyword in SQL Server. After rebuilding all the indexes the issue persists.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;The display of the data in ArcMap is actually really fast. But &lt;/SPAN&gt;&lt;SPAN style="text-decoration:underline;"&gt;adding it&lt;/SPAN&gt;&lt;SPAN&gt; to ArcMap takes minutes. Just selecting it in ArcCatalog freezes the application for minutes. Other layers in the database, even fairly large ones, are instantaneous. This all makes me think there is some cruft in the SDE tables, or at least something wrong in them.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I've tried copy/pasting them into a new layer or importing into a new layer (even without the GlobalID field) and the new layers are just as slow.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 20:13:02 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264876#M15312</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-29T20:13:02Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264877#M15313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Are you adding these layers as geodatabase feature classes or as Query Layers?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;How many total features exist in the table?&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;- V&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 20:37:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264877#M15313</guid>
      <dc:creator>VinceAngelo</dc:creator>
      <dc:date>2014-04-29T20:37:24Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264878#M15314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;I have two unversioned featureclasses in a dataset that our organization adds and deletes up to 10s of thousands of records daily. One is over 3million points and the other is over 500k lines&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;SPAN&gt;These were created in ESRI software and are edited with python tools outside of an edit session. They are not versioned (yet) but do have GlobalIDs. They will be replicated. They exist within a dataset, but exporting them out of the dataset into the main directory does not help. They were not like this 3 or 4 weeks ago, and there haven't been significant total record increases. Thanks for following up with me.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 29 Apr 2014 20:59:49 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264878#M15314</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-29T20:59:49Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264879#M15315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;BLOCKQUOTE class="jive-quote"&gt;The display of the data in ArcMap is actually really fast. But &lt;SPAN style="text-decoration:underline;"&gt;adding it&lt;/SPAN&gt; to ArcMap takes minutes. &lt;STRONG&gt;Just selecting it in ArcCatalog freezes the application for minutes.&lt;/STRONG&gt; Other layers in the database, even fairly large ones, are instantaneous. This all makes me think there is some cruft in the SDE tables, or at least something wrong in them.&lt;/BLOCKQUOTE&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Do you, by default, work with ArcCatalog with the &lt;/SPAN&gt;&lt;STRONG&gt;"Preview TAB"&lt;/STRONG&gt;&lt;SPAN&gt; selected? Unfortunately, ArcCatalog always tries to draw the entire extent / dataset when hitting or opening the "Preview TAB", which may cause an apparent application hang. This voids any use of indexes or proper spatial ordering of the datasets in the underlying tables (spatial fragmentation), as it will need to read the entire table to draw the dataset.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If so, you would do good to avoid using the Preview TAB as much as possible, and only draw the datasets in ArcMap with a proper &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;minimum&lt;/SPAN&gt;&lt;SPAN&gt; and &lt;/SPAN&gt;&lt;SPAN style="font-style:italic;"&gt;maximum&lt;/SPAN&gt;&lt;SPAN&gt; display scale applied through the layer settings. It is also good practice to always access *.lyr files on a file system referencing your Feature Classes in the geodatabase using ArcCatalog, instead of accessing the Feature Classes directly through a database connection, as you will be a able to pre-define and limit display scales, set symbology and appropriate labelling.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;It would also be wise to post some stats / specs about server hardware used, LAN speed, and the number of users on the servers and using these Feature Classes at any given point in time.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 07:41:00 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264879#M15315</guid>
      <dc:creator>MarcoBoeringa</dc:creator>
      <dc:date>2014-04-30T07:41:00Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264880#M15316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;No, this isn't previewing the data, this is just clicking the name in the contents tab. As in I want to right-click and select properties, which freezes ArcCatalog for 2 minutes before it shows the right-click menu.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I have software info in the initial post, I don't have hardware or network info and will have to ask. I can tell you that the DB servers are virtualized with 16gb of memory, and I have had the DBA restart the server to "free up memory" which didn't help in the slightest.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;There is only 1 user during the day intermittently. I'll point out again that this has been a constant degradation over time. Things that used to be instantaneous on the dataset now take up to 4 minutes to do.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I guess I'll contact support today.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks everyone.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 15:05:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264880#M15316</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-04-30T15:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264881#M15317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Matt,&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I wonder if the geoprocessing history for those two feature classes is getting very large. Every time that you perform a GP process it adds to the metadata. The metadata is stored in a geodatabase system table.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;You may want to look into this add-in: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://resources.arcgis.com/gallery/file/geodatabase/details?entryID=0F00C386-1422-2418-7FA6-03F84C1B3FBA" rel="nofollow" target="_blank"&gt;Delete Geoprocessing History from Metadata&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Got the link from this post: &lt;/SPAN&gt;&lt;A class="jive-link-external-small" href="http://forums.arcgis.com/threads/43399-metadata-geoprocessing-history" rel="nofollow" target="_blank"&gt;http://forums.arcgis.com/threads/43399-metadata-geoprocessing-history&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would only do this after you have a verified back of the geodatabase.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Try it on the two feature classes in question&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;-George&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 15:45:26 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264881#M15317</guid>
      <dc:creator>George_Thompson</dc:creator>
      <dc:date>2014-04-30T15:45:26Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264882#M15318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;George, I see there are separate tools/scripts for deleting geoprocessing history metadata from 9.x and 10.x geodatabases.&amp;nbsp; Which ArcSDE system tables get cleaned out as a result of running these tools/scripts?&amp;nbsp; Is it METADATA, GDB_USERMETADATA, or both?&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 16:48:58 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264882#M15318</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2014-04-30T16:48:58Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264883#M15319</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Just the geoprocessing history part of the metadata gets deleted. This can become rather large over time. The Documentation field is located in the SDE.GDB_ITEMS table, it is an XML field. &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I just tested this on a local instance of SQL Server(2012), using ArcGIS Desktop 10.1 SP1 w/QIP installed, and it just deleted the Geoprocessing History for the feature classes that I selected. I verified in the Metadata, for those feature classes, that the geoprocessing section is now empty. I only tested this on a 10.x geodatabase, not a 9.3.x version.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;A href="http://resources.arcgis.com/en/help/main/10.2/index.html#//002q00000080000000"&gt;System Tables of a Geodatabase in SQL Server&lt;BR /&gt;&lt;/A&gt;&lt;BR /&gt;&lt;SPAN&gt;Here is a link to a KB article that talks about how to do it via Python:&lt;/SPAN&gt;&lt;BR /&gt;&lt;A href="http://support.esri.com/en/knowledgebase/techarticles/detail/41026"&gt;Automate the process of deleting geoprocessing history&lt;/A&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;I would recommend doing this after you have a full, verified backup of the geodatabase or on a test instance. This is in case there are any hiccups during the process.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Hopefully this helps clear up some questions.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 17:28:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264883#M15319</guid>
      <dc:creator>George_Thompson</dc:creator>
      <dc:date>2014-04-30T17:28:25Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264884#M15320</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Thanks for clarifying, George.&amp;nbsp; That is helpful.&amp;nbsp; I'm curious to hear if this help's Matt's performance issues as described above.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 30 Apr 2014 17:34:13 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264884#M15320</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2014-04-30T17:34:13Z</dc:date>
    </item>
    <item>
      <title>Re: Non-versioned data slowing way down</title>
      <link>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264885#M15321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The metadata's Geoprocessing History proved to be the culprit. My processing has dropped to 1/8th the time it was taking. The lengths of the metadata fields for the two feature classes in the GDB_ITEMS table went from 27million and 19million in length down to 1500.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Thanks George, you're my new hero!&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 May 2014 12:47:21 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/non-versioned-data-slowing-way-down/m-p/264885#M15321</guid>
      <dc:creator>MattLane</dc:creator>
      <dc:date>2014-05-01T12:47:21Z</dc:date>
    </item>
  </channel>
</rss>

