<?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: ArcPy - Move feature class into feature dataset? in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590134#M46276</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the feature class to geodatabase function&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/feature-class-to-geodatabase.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/feature-class-to-geodatabase.htm"&gt;Feature Class To Geodatabase—Conversion toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 09 Feb 2018 15:11:33 GMT</pubDate>
    <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
    <dc:date>2018-02-09T15:11:33Z</dc:date>
    <item>
      <title>ArcPy - Move feature class into feature dataset?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590133#M46275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How do I move a feature class into a feature dataset using ArcPy?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I've tried both arcpy.CopyFeatures_management() and arcpy.Copy_management, which both give me these errors:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;ExecuteError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; ERROR &lt;SPAN class="number token"&gt;000725&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Output Feature Class&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Dataset G&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt;\GIS Data\xxxxxx\&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;_20180209 already exists&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt;&amp;nbsp; ‍‍&lt;SPAN class="line-numbers-rows"&gt;&lt;SPAN&gt;‍&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this case, an empty feature dataset is created to store these feature classes. I just want to be able to move them into the datasets.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I also just tried arcpy.FeatureClassToFeatureClass_conversion() with no success:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE class="language-python line-numbers"&gt;&lt;CODE&gt;ExecuteError&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; ERROR &lt;SPAN class="number token"&gt;999999&lt;/SPAN&gt;&lt;SPAN class="punctuation token"&gt;:&lt;/SPAN&gt; Error executing function&lt;SPAN class="punctuation token"&gt;.&lt;/SPAN&gt; Failed to execute &lt;SPAN class="punctuation token"&gt;(&lt;/SPAN&gt;FeatureClassToFeatureClass&lt;SPAN class="punctuation token"&gt;)&lt;/SPAN&gt;&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;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 15:00:51 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590133#M46275</guid>
      <dc:creator>MarcusSanders2</dc:creator>
      <dc:date>2018-02-09T15:00:51Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy - Move feature class into feature dataset?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590134#M46276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the feature class to geodatabase function&lt;/P&gt;&lt;P&gt;&lt;A class="link-titled" href="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/feature-class-to-geodatabase.htm" title="http://pro.arcgis.com/en/pro-app/tool-reference/conversion/feature-class-to-geodatabase.htm"&gt;Feature Class To Geodatabase—Conversion toolbox | ArcGIS Desktop&lt;/A&gt;&amp;nbsp;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 15:11:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590134#M46276</guid>
      <dc:creator>Lake_Worth_BeachAdmin</dc:creator>
      <dc:date>2018-02-09T15:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: ArcPy - Move feature class into feature dataset?</title>
      <link>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590135#M46277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, that was it&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 09 Feb 2018 18:42:40 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/arcpy-move-feature-class-into-feature-dataset/m-p/590135#M46277</guid>
      <dc:creator>MarcusSanders2</dc:creator>
      <dc:date>2018-02-09T18:42:40Z</dc:date>
    </item>
  </channel>
</rss>

