<?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: Default Values, split and merge policies and editing in Data Management Questions</title>
    <link>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16280#M846</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are only updating one field (the subtype field) of a particular table, then something like this would be all you need:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UPDATE DBO.SDE.TABLE1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SET SUBTYPE = 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WHERE SUBTYPE = 2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Running this statement in SQL Server Studio Manager as a user with write privileges on that table (or the 'sa' account) would change the values for the SUBTYPE field but no other fields.&amp;nbsp; Let's say that you'd like to change all values that are currently '2' to become values of '1'.&amp;nbsp; The statement above would accomplish this.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If your table is versioned, ensure that you have compressed to state 0 before doing something like this on the base table (i.e., DBO.SDE.TABLE1).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Sep 2013 23:39:33 GMT</pubDate>
    <dc:creator>WilliamCraft</dc:creator>
    <dc:date>2013-09-13T23:39:33Z</dc:date>
    <item>
      <title>Default Values, split and merge policies and editing</title>
      <link>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16277#M843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;I have a bunch of lines and points with default values which are different than the default.&amp;nbsp; I need to change the subtype, but the rest of the default values need to stay the same.&amp;nbsp; When I change it in the attribute window it gives me the option to leave the rest of the default columns alone.&amp;nbsp; But if I do a huge selection and use field calculator to change a bunch in table view it will change the other columns to have the default values.&amp;nbsp; This isn't a split or a merge, so I'm not sure what to do to &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Basically I want to say "No" to assigning default values on edits on multiple records at once.&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;tom&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2013 20:05:35 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16277#M843</guid>
      <dc:creator>TomMagdaleno</dc:creator>
      <dc:date>2013-09-12T20:05:35Z</dc:date>
    </item>
    <item>
      <title>Re: Default Values, split and merge policies and editing</title>
      <link>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16278#M844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;Is this data in SQL Server or Oracle by chance?&amp;nbsp; Your best bet might be to run a SQL statement against the table to update the attribute values for the subtype field without affecting the other fields.&amp;nbsp; If you do this on a versioned feature class, make sure there are no records in the corresponding A and D tables before executing your SQL against the base table.&amp;nbsp; In other words, go to state 0 before mass applying a SQL attribute update.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 22:48:18 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16278#M844</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2013-09-13T22:48:18Z</dc:date>
    </item>
    <item>
      <title>Re: Default Values, split and merge policies and editing</title>
      <link>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16279#M845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;The data is in SQL Server.&amp;nbsp; Your two for two on guessing my system so far &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;That sounds a bit complicated.&amp;nbsp; So I would do it in a table view or in SQL server?&amp;nbsp; That sounds like a database shuffle waiting to happen.&amp;nbsp; I'll have to think about that.&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 22:52:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16279#M845</guid>
      <dc:creator>TomMagdaleno</dc:creator>
      <dc:date>2013-09-13T22:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Default Values, split and merge policies and editing</title>
      <link>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16280#M846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;SPAN&gt;If you are only updating one field (the subtype field) of a particular table, then something like this would be all you need:&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;UPDATE DBO.SDE.TABLE1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;SET SUBTYPE = 1&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN&gt;WHERE SUBTYPE = 2;&lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;Running this statement in SQL Server Studio Manager as a user with write privileges on that table (or the 'sa' account) would change the values for the SUBTYPE field but no other fields.&amp;nbsp; Let's say that you'd like to change all values that are currently '2' to become values of '1'.&amp;nbsp; The statement above would accomplish this.&amp;nbsp; &lt;/SPAN&gt;&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN&gt;If your table is versioned, ensure that you have compressed to state 0 before doing something like this on the base table (i.e., DBO.SDE.TABLE1).&lt;/SPAN&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 23:39:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/data-management-questions/default-values-split-and-merge-policies-and/m-p/16280#M846</guid>
      <dc:creator>WilliamCraft</dc:creator>
      <dc:date>2013-09-13T23:39:33Z</dc:date>
    </item>
  </channel>
</rss>

