<?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: Append without dependencies in Python Questions</title>
    <link>https://community.esri.com/t5/python-questions/append-without-dependencies/m-p/1396015#M70056</link>
    <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/454563"&gt;@Moi_Nccncc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I never had this experience but you could try the memory workspace as in intermediary to 'break' the dependencies and create a standalone fc in memory before appending.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;temp_fc = arcpy.conversion.ExportFeatures(
    in_features = "in_fc", 
    out_features = "memory\\temp_fc", 
    where_clause = "if you are subsetting data"
)

arcpy.management.Append(
    inputs = temp_fc, 
    target = "target_fc", 
    schema_type = "NO_TEST"
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Thu, 14 Mar 2024 16:10:42 GMT</pubDate>
    <dc:creator>Clubdebambos</dc:creator>
    <dc:date>2024-03-14T16:10:42Z</dc:date>
    <item>
      <title>Append without dependencies</title>
      <link>https://community.esri.com/t5/python-questions/append-without-dependencies/m-p/1395742#M70052</link>
      <description>&lt;P&gt;I am trying to append features from one feature class to anther, The source has other table dependancies which I dont want to copy how ever when using&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;arcpy.management.Append(source_feature_class, target_feature_class, "NO_TEST")&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;it copies the features and created all dependencies tables&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class=""&gt;&amp;nbsp;How to avoid copying any dependencies tables?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 10:25:24 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-without-dependencies/m-p/1395742#M70052</guid>
      <dc:creator>Moi_Nccncc</dc:creator>
      <dc:date>2024-03-14T10:25:24Z</dc:date>
    </item>
    <item>
      <title>Re: Append without dependencies</title>
      <link>https://community.esri.com/t5/python-questions/append-without-dependencies/m-p/1396015#M70056</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/454563"&gt;@Moi_Nccncc&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;I never had this experience but you could try the memory workspace as in intermediary to 'break' the dependencies and create a standalone fc in memory before appending.&lt;/P&gt;&lt;LI-CODE lang="python"&gt;temp_fc = arcpy.conversion.ExportFeatures(
    in_features = "in_fc", 
    out_features = "memory\\temp_fc", 
    where_clause = "if you are subsetting data"
)

arcpy.management.Append(
    inputs = temp_fc, 
    target = "target_fc", 
    schema_type = "NO_TEST"
)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 14 Mar 2024 16:10:42 GMT</pubDate>
      <guid>https://community.esri.com/t5/python-questions/append-without-dependencies/m-p/1396015#M70056</guid>
      <dc:creator>Clubdebambos</dc:creator>
      <dc:date>2024-03-14T16:10:42Z</dc:date>
    </item>
  </channel>
</rss>

