<?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 Overwrite a hosted feature using SDE View in Developers Questions</title>
    <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300166#M6641</link>
    <description>&lt;P&gt;I am attempting to overwrite a Hosted Feature layer using SDE View. First, I get the layer ID from the portal and connect it to the portal. Secondly, I connect to my SQL and select the view I want. Thirdly, I create a new temporary view with the query and attempt to overwrite my hosted feature layer. Once the layer is overwritten, I delete the temporary view. My code is working fine, and I can see the updated item in the portal. Still, when I check the attribute data, it is not updated. It still shows the total number of attributes when I published it manually. My old view had 51 rows, and my new temp view had 57 rows. The code is working without any error, and the layer is updated, but the layer still shows the old data (51 rows). The service definition file is also updated in the portal, but I'm not sure if I need to do it in the code as well.&lt;/P&gt;&lt;P&gt;The code works, but it is not actually updating the data, and I am not sure what to do. Please see my attached code for reference -&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;#Import Modules&lt;/SPAN&gt;
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class=""&gt;from&lt;/SPAN&gt; arcgis.gis &lt;SPAN class=""&gt;import&lt;/SPAN&gt; GIS
&lt;SPAN class=""&gt;from&lt;/SPAN&gt; arcgis.features &lt;SPAN class=""&gt;import&lt;/SPAN&gt; FeatureLayerCollection
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; pyodbc
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; traceback
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; arcpy.mp

&lt;SPAN class=""&gt;# Connect to ArcGIS Online organization or Portal for ArcGIS&lt;/SPAN&gt;

gis = GIS(&lt;SPAN class=""&gt;"Service URL"&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"Username"&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"Password"&lt;/SPAN&gt;)
un = gis.properties.user.username
&lt;SPAN class=""&gt;# confirm that the user has logged in successfully&lt;/SPAN&gt;
&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Logged in as: {}'&lt;/SPAN&gt;.&lt;SPAN class=""&gt;format&lt;/SPAN&gt;(un))

&lt;SPAN class=""&gt;#Variables - Web layers&lt;/SPAN&gt;
itemid = &lt;SPAN class=""&gt;"e5008676768687d"&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Set the connection properties&lt;/SPAN&gt;
server_name = &lt;SPAN class=""&gt;"ABC"&lt;/SPAN&gt;
database_name = &lt;SPAN class=""&gt;"XYZ"&lt;/SPAN&gt;
username = &lt;SPAN class=""&gt;"EEE"&lt;/SPAN&gt;
password = &lt;SPAN class=""&gt;"EEEE"&lt;/SPAN&gt;
instance = &lt;SPAN class=""&gt;"TD-G20\\ESRI"&lt;/SPAN&gt;
sde_connection_path = &lt;SPAN class=""&gt;r"C:\\Users\\ABC\\AppData\\Roaming\\Esri\\Desktop10.8\\ArcCatalog\\SQL.sde"&lt;/SPAN&gt;
connection = arcpy.ArcSDESQLExecute(sde_connection_path)
view_to_select = &lt;SPAN class=""&gt;"Cities"&lt;/SPAN&gt;
arcpy.env.workspace = sde_connection_path

&lt;SPAN class=""&gt;# Check if the view is selected&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_to_select):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"SDE View Selected Successfully."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"View does not exist"&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;#Creating a query on Cities View&lt;/SPAN&gt;
&lt;SPAN class=""&gt;#query = "SELECT CAST(Status AS smallint) FROM Cities WHERE Status = 1";&lt;/SPAN&gt;
&lt;SPAN class=""&gt;#result = connection.execute(query) # Execute the query&lt;/SPAN&gt;

view_name = &lt;SPAN class=""&gt;"Cities_QueryviewTemp"&lt;/SPAN&gt;  &lt;SPAN class=""&gt;# Temporary View with a query&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Check if the view already exists&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_name):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"View already exists."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;# Create the view with the query applied&lt;/SPAN&gt;
    arcpy.management.MakeTableView(&lt;SPAN class=""&gt;"Cities"&lt;/SPAN&gt;,view_name, where_clause=&lt;SPAN class=""&gt;"Status =1"&lt;/SPAN&gt;)
    result = arcpy.management.GetCount(&lt;SPAN class=""&gt;"CEP_QueryviewTemp"&lt;/SPAN&gt;)
    row_count = &lt;SPAN class=""&gt;int&lt;/SPAN&gt;(result.getOutput(&lt;SPAN class=""&gt;0&lt;/SPAN&gt;))
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Total number of rows:"&lt;/SPAN&gt;, row_count)

&lt;SPAN class=""&gt;# Verify if the view was created successfully&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_name):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Temporary View selected successfully."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Failed to create the view."&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Overwrite Hosted Feature Layer&lt;/SPAN&gt;
arcpy.env.overwriteOutput = &lt;SPAN class=""&gt;True&lt;/SPAN&gt;
dataitem = gis.content.get(itemid)
flayercol = FeatureLayerCollection.fromitem(dataitem) &lt;SPAN class=""&gt;#Establishing a feature collection&lt;/SPAN&gt;
flayercol.manager.overwrite(view_name)

&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Cities Web Layer Overwrite Successfully!'&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Delete the temporary view&lt;/SPAN&gt;
arcpy.Delete_management(view_name, &lt;SPAN class=""&gt;"VIEW"&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Temporary View Deleted'&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Fri, 16 Jun 2023 10:30:12 GMT</pubDate>
    <dc:creator>ITAdmin</dc:creator>
    <dc:date>2023-06-16T10:30:12Z</dc:date>
    <item>
      <title>Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300166#M6641</link>
      <description>&lt;P&gt;I am attempting to overwrite a Hosted Feature layer using SDE View. First, I get the layer ID from the portal and connect it to the portal. Secondly, I connect to my SQL and select the view I want. Thirdly, I create a new temporary view with the query and attempt to overwrite my hosted feature layer. Once the layer is overwritten, I delete the temporary view. My code is working fine, and I can see the updated item in the portal. Still, when I check the attribute data, it is not updated. It still shows the total number of attributes when I published it manually. My old view had 51 rows, and my new temp view had 57 rows. The code is working without any error, and the layer is updated, but the layer still shows the old data (51 rows). The service definition file is also updated in the portal, but I'm not sure if I need to do it in the code as well.&lt;/P&gt;&lt;P&gt;The code works, but it is not actually updating the data, and I am not sure what to do. Please see my attached code for reference -&lt;/P&gt;&lt;PRE&gt;&lt;SPAN class=""&gt;#Import Modules&lt;/SPAN&gt;
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; arcpy
&lt;SPAN class=""&gt;from&lt;/SPAN&gt; arcgis.gis &lt;SPAN class=""&gt;import&lt;/SPAN&gt; GIS
&lt;SPAN class=""&gt;from&lt;/SPAN&gt; arcgis.features &lt;SPAN class=""&gt;import&lt;/SPAN&gt; FeatureLayerCollection
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; pyodbc
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; traceback
&lt;SPAN class=""&gt;import&lt;/SPAN&gt; arcpy.mp

&lt;SPAN class=""&gt;# Connect to ArcGIS Online organization or Portal for ArcGIS&lt;/SPAN&gt;

gis = GIS(&lt;SPAN class=""&gt;"Service URL"&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"Username"&lt;/SPAN&gt;, &lt;SPAN class=""&gt;"Password"&lt;/SPAN&gt;)
un = gis.properties.user.username
&lt;SPAN class=""&gt;# confirm that the user has logged in successfully&lt;/SPAN&gt;
&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Logged in as: {}'&lt;/SPAN&gt;.&lt;SPAN class=""&gt;format&lt;/SPAN&gt;(un))

&lt;SPAN class=""&gt;#Variables - Web layers&lt;/SPAN&gt;
itemid = &lt;SPAN class=""&gt;"e5008676768687d"&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Set the connection properties&lt;/SPAN&gt;
server_name = &lt;SPAN class=""&gt;"ABC"&lt;/SPAN&gt;
database_name = &lt;SPAN class=""&gt;"XYZ"&lt;/SPAN&gt;
username = &lt;SPAN class=""&gt;"EEE"&lt;/SPAN&gt;
password = &lt;SPAN class=""&gt;"EEEE"&lt;/SPAN&gt;
instance = &lt;SPAN class=""&gt;"TD-G20\\ESRI"&lt;/SPAN&gt;
sde_connection_path = &lt;SPAN class=""&gt;r"C:\\Users\\ABC\\AppData\\Roaming\\Esri\\Desktop10.8\\ArcCatalog\\SQL.sde"&lt;/SPAN&gt;
connection = arcpy.ArcSDESQLExecute(sde_connection_path)
view_to_select = &lt;SPAN class=""&gt;"Cities"&lt;/SPAN&gt;
arcpy.env.workspace = sde_connection_path

&lt;SPAN class=""&gt;# Check if the view is selected&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_to_select):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"SDE View Selected Successfully."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"View does not exist"&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;#Creating a query on Cities View&lt;/SPAN&gt;
&lt;SPAN class=""&gt;#query = "SELECT CAST(Status AS smallint) FROM Cities WHERE Status = 1";&lt;/SPAN&gt;
&lt;SPAN class=""&gt;#result = connection.execute(query) # Execute the query&lt;/SPAN&gt;

view_name = &lt;SPAN class=""&gt;"Cities_QueryviewTemp"&lt;/SPAN&gt;  &lt;SPAN class=""&gt;# Temporary View with a query&lt;/SPAN&gt;

&lt;SPAN class=""&gt;# Check if the view already exists&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_name):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"View already exists."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;# Create the view with the query applied&lt;/SPAN&gt;
    arcpy.management.MakeTableView(&lt;SPAN class=""&gt;"Cities"&lt;/SPAN&gt;,view_name, where_clause=&lt;SPAN class=""&gt;"Status =1"&lt;/SPAN&gt;)
    result = arcpy.management.GetCount(&lt;SPAN class=""&gt;"CEP_QueryviewTemp"&lt;/SPAN&gt;)
    row_count = &lt;SPAN class=""&gt;int&lt;/SPAN&gt;(result.getOutput(&lt;SPAN class=""&gt;0&lt;/SPAN&gt;))
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Total number of rows:"&lt;/SPAN&gt;, row_count)

&lt;SPAN class=""&gt;# Verify if the view was created successfully&lt;/SPAN&gt;
&lt;SPAN class=""&gt;if&lt;/SPAN&gt; arcpy.Exists(view_name):
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Temporary View selected successfully."&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;else&lt;/SPAN&gt;:
    &lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;"Failed to create the view."&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Overwrite Hosted Feature Layer&lt;/SPAN&gt;
arcpy.env.overwriteOutput = &lt;SPAN class=""&gt;True&lt;/SPAN&gt;
dataitem = gis.content.get(itemid)
flayercol = FeatureLayerCollection.fromitem(dataitem) &lt;SPAN class=""&gt;#Establishing a feature collection&lt;/SPAN&gt;
flayercol.manager.overwrite(view_name)

&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Cities Web Layer Overwrite Successfully!'&lt;/SPAN&gt;)

&lt;SPAN class=""&gt;# Delete the temporary view&lt;/SPAN&gt;
arcpy.Delete_management(view_name, &lt;SPAN class=""&gt;"VIEW"&lt;/SPAN&gt;)
&lt;SPAN class=""&gt;print&lt;/SPAN&gt;(&lt;SPAN class=""&gt;'Temporary View Deleted'&lt;/SPAN&gt;)&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 10:30:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300166#M6641</guid>
      <dc:creator>ITAdmin</dc:creator>
      <dc:date>2023-06-16T10:30:12Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300176#M6642</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/19093"&gt;@ITAdmin&lt;/a&gt;&amp;nbsp;,&lt;/P&gt;&lt;P&gt;I would recommend using the Append tool in ArcGIS Pro.&amp;nbsp; With the latest version of Pro, there is a&amp;nbsp;&lt;STRONG&gt;Matching Field for Update&lt;/STRONG&gt; option:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JakeSkinner_0-1686915733045.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/73475i44C231EC0079EFE2/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JakeSkinner_0-1686915733045.png" alt="JakeSkinner_0-1686915733045.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;This will update existing features based on a unique field.&amp;nbsp; If the feature does not exist, it will Append the new feature.&lt;/P&gt;&lt;P&gt;If there is not a unique field, you could execute the Truncate or Delete Features tool first, and then execute the Append.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 11:43:28 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300176#M6642</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2023-06-16T11:43:28Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300179#M6643</link>
      <description>&lt;P&gt;Hi&amp;nbsp;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;,&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. But, I am trying to automate the process using code. Do you suggest adding that function to the code?&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 11:54:38 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300179#M6643</guid>
      <dc:creator>ITAdmin</dc:creator>
      <dc:date>2023-06-16T11:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300183#M6644</link>
      <description>&lt;P&gt;Yes, exactly.&amp;nbsp; I previously created this &lt;A href="https://community.esri.com/t5/arcgis-online-documents/overwrite-arcgis-online-feature-service-using/ta-p/904457" target="_self"&gt;script&lt;/A&gt; for AGOL feature services, however the Append function at pro 3.x releases is very fast.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 12:19:15 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300183#M6644</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2023-06-16T12:19:15Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300239#M6646</link>
      <description>&lt;P&gt;Hi &lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;JakeSkinner,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your response. I can see that it is working but with append, the problem is if I got 50 rows in the old dataset and the new dataset got 57. When I use append the total attributes I am getting is 107. But I just want to add only new 7 rows. I tried in append with field maps but not sure exactly which merge rule will work. Would be good if you can please share any suggestions on that ? If possible.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you for your time &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 15:01:41 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300239#M6646</guid>
      <dc:creator>ITAdmin</dc:creator>
      <dc:date>2023-06-16T15:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300293#M6647</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/19093"&gt;@ITAdmin&lt;/a&gt;&amp;nbsp;you could use &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/truncatetable.htm" target="_self"&gt;Truncate Table&lt;/A&gt; or &lt;A href="https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/delete-rows.htm" target="_self"&gt;Delete Rows&lt;/A&gt; before you apply the append.&amp;nbsp; I can't recall if Truncate Table will work on a hosted feature service, but Delete Rows will.&lt;/P&gt;</description>
      <pubDate>Fri, 16 Jun 2023 16:53:29 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300293#M6647</guid>
      <dc:creator>JakeSkinner</dc:creator>
      <dc:date>2023-06-16T16:53:29Z</dc:date>
    </item>
    <item>
      <title>Re: Overwrite a hosted feature using SDE View</title>
      <link>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300697#M6649</link>
      <description>&lt;P&gt;&lt;a href="https://community.esri.com/t5/user/viewprofilepage/user-id/10527"&gt;@JakeSkinner&lt;/a&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you very much for your time. It resolved my queries.&amp;nbsp;&lt;/P&gt;&lt;P&gt;Just FYI Truncate table or delete rows both are working for the feature layer.&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Thank you!&lt;/P&gt;</description>
      <pubDate>Mon, 19 Jun 2023 13:04:16 GMT</pubDate>
      <guid>https://community.esri.com/t5/developers-questions/overwrite-a-hosted-feature-using-sde-view/m-p/1300697#M6649</guid>
      <dc:creator>ITAdmin</dc:creator>
      <dc:date>2023-06-19T13:04:16Z</dc:date>
    </item>
  </channel>
</rss>

