<?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: Python alternative for sdelayer command in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711382#M55141</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't seen any ability to over-ride the object id field name, in fact the property in arcpy is read-only&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm" title="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Migrate from ArcSDE administration commands—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;but you can use it to read the object id name... see the code snippets throughout the arcpy section .... for example, from the help, to obtain information about any input (in this case a layer in a geodatabase), a 'describe' object is created and queries to see if it has an object id field. &amp;nbsp;If it does, then the name is printed. &amp;nbsp;If the input were a pure table or some other non-spatial object, there would be no such field and nothing would be printed.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;desc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"C:/data/chesapeake.gdb/munich"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;hasOID&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"OIDFieldName: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OIDFieldName&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Arcpy for arcmap &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy/what-is-arcpy-.htm" title="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy/what-is-arcpy-.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;What is ArcPy?—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tools in arcmap &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/tools/main/a-quick-tour-of-geoprocessing-tool-references.htm" title="https://desktop.arcgis.com/en/arcmap/latest/tools/main/a-quick-tour-of-geoprocessing-tool-references.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;A quick tour of geoprocessing tool references—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy for Pro &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm" title="https://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Pro ArcPy Reference—ArcGIS Pro | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tools in Pro &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/main/arcgis-pro-tool-reference.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/main/arcgis-pro-tool-reference.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Pro tool reference—ArcGIS Pro | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is pretty well what I use to navigate around&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 12 Dec 2021 06:29:28 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2021-12-12T06:29:28Z</dc:date>
    <item>
      <title>Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711379#M55138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using the ArcSDE command tool set at the moment but in time when we upgrade to ArcGIS 10.4 the command toolset will not be available and we need to figure out a way to solve certain tasks in Python instead. For example, today we do like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Create a table with column SHAPE using the SDE_ST_GEOMETRY type.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp; (In user schema uno)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;CREATE TABLE TEST_SPACE&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;(&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; OID INTEGER NOT NULL ,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; OwnerDID INTEGER NOT NULL ,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; Label VARCHAR2(100) NULL ,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; lastUpdate DATE NOT NULL ,&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; GeometryType VARCHAR2(20) DEFAULT 'SURFACE',&lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt; SHAPE SDE.ST_GEOMETRY NULL &lt;/EM&gt;&lt;BR /&gt;&lt;EM&gt;);&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Using SDE command tool sdelayer to "register" the table/column in SDE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;sdelayer -o add -l uno.TEST_SPACE,shape -e nac+ -R 1 -k DEFAULTS -E 220000,6000000,1000000,7700000 -t ST_GEOMETRY -C OID,USER -s server1 -i sde:oracle11g:VNUTVTD_SERVER1 -u uno -p&amp;nbsp;uno&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far so good. But how should this be done with Python when sdelayer is gone? I have searched the internet for examples but can't find any solutions that solves the same problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried to use&amp;nbsp;arcpy.CreateFeatureclass_management but that creates the table, in my test from a template table which hade exactly the same appearence as TEST_SPACE. But then I ran into other problems like that the column OID was renamed to OBJECTID with data type "Object ID".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would like to have a solution that replaces just the "sdelayer" command.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any suggestions? Tips of any kind would be of great value.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 08:11:32 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711379#M55138</guid>
      <dc:creator>AndersMark1</dc:creator>
      <dc:date>2016-11-10T08:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711380#M55139</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The OBJECTID is the correct fieldname for a featureclass object id field (hence the type name). &amp;nbsp;Conversions will be to the types of fields required by a featureclass. &amp;nbsp;Python offers&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/make-feature-layer.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/make-feature-layer.htm"&gt;Make Feature Layer—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/save-to-layer-file.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/save-to-layer-file.htm"&gt;Save To Layer File—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/copy-features.htm" title="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/copy-features.htm"&gt;Copy Features—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or are you looking for .&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm" title="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm"&gt;Migrate from ArcSDE administration commands—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 09:47:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711380#M55139</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-11-10T09:47:07Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711381#M55140</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Dan for your answer. I checked your links but I can't find any solution to what I want to do.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Still I would prefer to exchange the sdelayer-command with something similar in Python. We're scripting the database creation and uses output from Erwin together with our own Python scripts. If that's impossible I could think of a second solution which includes a call to&amp;nbsp;&lt;SPAN style="background-color: #ffffff;"&gt;arcpy.CreateFeatureclass_management.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;About the column OBJECTID. I know that this is the default name for this kind of field. Nevertheless we have the option "-C" in sdelayer to assign our own named column to have the same behaviour (&lt;SPAN&gt;featureclass object id field&lt;/SPAN&gt;). This means we dont need to go with the default name if we don't like. We have a number of tables created over the years where we use OID instead of OBJECTID and we'ld like to continue with that. Otherwise we got some other problems to deal with.&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="background-color: #ffffff;"&gt;&lt;EM&gt;"-C OID,USER"&lt;/EM&gt;&lt;EM style="border: 0px;"&gt; &amp;nbsp; says that row_id_column to use is OID and that we want to keep the sequence user maintained. That is SDE doesn't have to do it for us which is the default. If it's possible to do with sdelayer it should be possible with arcpy package or am I missing something here?&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 10:27:56 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711381#M55140</guid>
      <dc:creator>AndersMark1</dc:creator>
      <dc:date>2016-11-10T10:27:56Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711382#M55141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I haven't seen any ability to over-ride the object id field name, in fact the property in arcpy is read-only&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm" title="http://desktop.arcgis.com/en/arcmap/latest/manage-data/administer-gdb-intro/migrate-from-admin-commands.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;Migrate from ArcSDE administration commands—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;but you can use it to read the object id name... see the code snippets throughout the arcpy section .... for example, from the help, to obtain information about any input (in this case a layer in a geodatabase), a 'describe' object is created and queries to see if it has an object id field. &amp;nbsp;If it does, then the name is printed. &amp;nbsp;If the input were a pure table or some other non-spatial object, there would be no such field and nothing would be printed.&lt;/P&gt;&lt;PRE class="lia-code-sample line-numbers language-none"&gt;&lt;CODE&gt;desc &lt;SPAN class="operator token"&gt;=&lt;/SPAN&gt; arcpy&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;Describe&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"C:/data/chesapeake.gdb/munich"&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="keyword token"&gt;if&lt;/SPAN&gt; desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;hasOID&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;
&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="keyword token"&gt;print&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;&lt;SPAN class="string token"&gt;"OIDFieldName: "&lt;/SPAN&gt; &lt;SPAN class="operator token"&gt;+&lt;/SPAN&gt; desc&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;OIDFieldName&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;
&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Arcpy for arcmap &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy/what-is-arcpy-.htm" title="https://desktop.arcgis.com/en/arcmap/latest/analyze/arcpy/what-is-arcpy-.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;What is ArcPy?—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tools in arcmap &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://desktop.arcgis.com/en/arcmap/latest/tools/main/a-quick-tour-of-geoprocessing-tool-references.htm" title="https://desktop.arcgis.com/en/arcmap/latest/tools/main/a-quick-tour-of-geoprocessing-tool-references.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;A quick tour of geoprocessing tool references—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;arcpy for Pro &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="https://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm" title="https://pro.arcgis.com/en/pro-app/arcpy/main/arcgis-pro-arcpy-reference.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Pro ArcPy Reference—ArcGIS Pro | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Tools in Pro &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/main/arcgis-pro-tool-reference.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/main/arcgis-pro-tool-reference.htm" rel="nofollow noopener noreferrer" target="_blank"&gt;ArcGIS Pro tool reference—ArcGIS Pro | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is pretty well what I use to navigate around&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Dec 2021 06:29:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711382#M55141</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2021-12-12T06:29:28Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711383#M55142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you can wait a little longer, the &lt;A href="http://desktop.arcgis.com/en/arcmap/latest/tools/data-management-toolbox/register-with-geodatabase.htm"&gt;Register With Geodatabase &lt;/A&gt;tool is being expanded in ArcGIS 10.5.&amp;nbsp; I don't believe you will be able to manage your own numbering after registering, but you will be able to identify different ObjectID and shape fields.&amp;nbsp; Also, users will be able to register views with the geodatabase.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://server.arcgis.com/en/server/10.5/get-started/windows/what-s-new-in-arcgis-for-server.htm#GUID-2EB7E149-52A7-4A4F-8062-241EDE052D86"&gt;What's new in ArcGIS Server 10.5&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 15:04:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711383#M55142</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2016-11-10T15:04:20Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711384#M55143</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I just tested to create the table as I described above (in SqlDeveloper). Then in ArcCatalog 10.3.1, right-click on the table name, and select "Manage/Register with geodatabase". Now what happens is that ArcCat discovers that I have two columns in the table that can serve has Object Id - OID and OwnerDID. Then I select OID and that makes that column to change data type to "Object Id". This is the same as the sdelayer option "-C OID" and exactly what I want.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But, the sequence is still maintained by SDE and not by me, i.e. USER. That becomes the next problem.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway, this discovery makes me think that there's still hope for making this possible in Python. If ArcCatalog allows it here i ArcCatalog, why shouldn't it be possible in Python? Hopefully it's possible to achieve the same thing as the whole sdelayer-command. The only question now is HOW?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 15:12:17 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711384#M55143</guid>
      <dc:creator>AndersMark1</dc:creator>
      <dc:date>2016-11-10T15:12:17Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711385#M55144</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Prior to ArcGIS 10.5, when calling the Register With Geodatabase tool from Python, a user could only pass the dataset, nothing else.&amp;nbsp; With 10.5, they are adding functionality from Python that has existed through the GUI for a little while.&amp;nbsp; That said, I don't think there is anyway around the geodatabase taking over management of the ID field.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 15:29:34 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711385#M55144</guid>
      <dc:creator>JoshuaBixby</dc:creator>
      <dc:date>2016-11-10T15:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Python alternative for sdelayer command</title>
      <link>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711386#M55145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Does anyone know if the 10.4.1 ArcGIS Desktop will work with SDE (I know it's not called that anymore) 10.5?&amp;nbsp; We are rolling out Desktop 10.4.1 but we are hating the way views are done in 10.4.1 SDE.&amp;nbsp; If possible I'd like to skip upgrading SDE and leave it at version 10.2.2 then go straight to 10.5 when it comes out.&amp;nbsp; I realize that the Desktop rarely is able to work with a newer version of SDE but the loss of SDE views two steps backwards imo.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Nov 2016 16:44:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/python-alternative-for-sdelayer-command/m-p/711386#M55145</guid>
      <dc:creator>RandyKreuziger</dc:creator>
      <dc:date>2016-11-10T16:44:33Z</dc:date>
    </item>
  </channel>
</rss>

