<?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: How to schedule data update - CSV file  (not in AGOL) in ArcGIS Enterprise Questions</title>
    <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219234#M34212</link>
    <description>&lt;P&gt;Thank you very much Brian, so let's first try to create an environment and install the modules with Conda. I'll try to run a test script then and post here my progress!&lt;/P&gt;</description>
    <pubDate>Thu, 06 Oct 2022 07:55:37 GMT</pubDate>
    <dc:creator>mdun</dc:creator>
    <dc:date>2022-10-06T07:55:37Z</dc:date>
    <item>
      <title>How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1218961#M34202</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I've a very simple need, however I can't find in the documentation a global description of how to achieve this: we need to daily update data that feeds a service, and this data is in a CSV file hosted on our ArcGIS Server. The first import of the CSV (it contains lat &amp;amp; lon fields) is done manually, using the "Add CSV and create a hosted feature layer" function in Portal.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I'm a beginner regarding Python scripts / API use and all this stuff... What I found for now is that I need to create a View Layer (to avoid possible locks issues when data is overwritten) from the Hosted Feature layer, create a Python script and schedule it (using Windows scheduler) on the machine hosting my ArcGIS Server.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;So basically, what I want to script and schedule is the "Update Data" &amp;gt; "Overwrite Entire Layer" Portal function:&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="martindagan_0-1664958293141.png" style="width: 400px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52883i5F4CFF2E358A9128/image-size/medium?v=v2&amp;amp;px=400" role="button" title="martindagan_0-1664958293141.png" alt="martindagan_0-1664958293141.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;martindagan_0-1664958293141.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;&lt;SPAN&gt;Does the machine hosting ArcGIS Server &amp;amp; Portal need a specific environment/set up? It currently has Python 2.7 (folder C:\python27\ArcGISx6410.9)&lt;/SPAN&gt;&lt;/LI&gt;&lt;LI&gt;&lt;SPAN&gt;Where can I find tutorial and/or samples of Python script for the "Update Data" &amp;gt; "Overwrite Entire Layer" Portal function? Not bits of code, but a full script that helps to understand the full logic (where to put this script, how to run it, etc).&amp;nbsp; For example this link (&lt;A href="https://developers.arcgis.com/python/samples/overwriting-feature-layers/)" target="_blank" rel="noopener"&gt;https://developers.arcgis.com/python/samples/overwriting-feature-layers/)&lt;/A&gt; seems to match, but when I try to run the first lines, it blocks at "ImportError: No module named arcgis.gis". Then when I search for this issue, I find that this code is for ArcGIS API for Python, which is installed along with ArcGIS Pro, but what I need is to use the Python script on the server...&lt;/SPAN&gt;&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;&lt;SPAN&gt;Context: ArcGIS Enterprise server (ArcGIS Server site federated with a portal) 10.9.1 (Windows).&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Many thanks!&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Martin&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 14:23:25 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1218961#M34202</guid>
      <dc:creator>mdun</dc:creator>
      <dc:date>2022-10-05T14:23:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1218997#M34203</link>
      <description>&lt;P&gt;Breaking it down and selecting only the easiest part. &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt; You won't get anywhere without the module, so, you can install it. Personally I have adopted "conda" everywhere and I suggest you do the same, because it lets you installed python + modules on any machine without disrupting what is already there. But that's another wrinkle and maybe you already have it??&lt;/P&gt;&lt;P&gt;If you do then on the server you could create an environment and install the modules you need in it,&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;conda create --name=load_csv
conda activate load_csv
conda install -c esri arcgis&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;When you do the first command it will create an empty environment, not even any Python (unless your "base" environment has Python in it.) The second command activates the new empty environment, and the third installs about 100 packages, including arcgis and the version of Python that arcgis prefers.&lt;/P&gt;&lt;P&gt;At that point you are in an activated environment. It has Python and the arcgis 2.x module installed. You can start an interpreter and test it, these are commands I use in a Linux bash shell,&lt;/P&gt;&lt;LI-CODE lang="c"&gt;python --version
Python 3.8.13

python
import arcgis
arcgis.__version__
'2.0.1'&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;The trick now is getting the right python to run when you invoke it from a scheduled task. I can find out where the Python I am using runs using "which python" in Linux or "get-command python" in PowerShell. Then you can invoke the command using the complete path in your scheduled task. Invoking the full path should also drag along the modules installed in the conda environment.&lt;/P&gt;&lt;P&gt;If you don't have conda installed on your server I suggest you start there, it's really going to save pain down the road. To ignore this advice and press on you could try doing "pip install arcgis". You probably need to use elevated permissions.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 15:48:20 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1218997#M34203</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-05T15:48:20Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219005#M34204</link>
      <description>&lt;P&gt;BTW you can install the "arcpy" module the same way but it won't work without solving the licensing issues. By contrast you can install "arcgis" anywhere and it will work.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 15:50:07 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219005#M34204</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-05T15:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219021#M34207</link>
      <description>&lt;P&gt;"I've a very simple need"... ha ha ha ha -- oh sorry. My projects always start that way too. I usually say "This should be easy".&lt;/P&gt;&lt;P&gt;It happens that I need a way to automate transfer of CSV data too but have to work on more pressing projects right now. If you give me feedback on what I wrote above you can probably keep me going here and it will help both of us.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 05 Oct 2022 16:27:50 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219021#M34207</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-05T16:27:50Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219234#M34212</link>
      <description>&lt;P&gt;Thank you very much Brian, so let's first try to create an environment and install the modules with Conda. I'll try to run a test script then and post here my progress!&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 07:55:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219234#M34212</guid>
      <dc:creator>mdun</dc:creator>
      <dc:date>2022-10-06T07:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219258#M34214</link>
      <description>&lt;P&gt;So I managed to set up the environment I think. But when I run the script, the first error I get is:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;ImportError: No module named arcgis.gis&lt;/LI-CODE&gt;&lt;P&gt;However the module is there:&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="mdun_0-1665051754937.png" style="width: 999px;"&gt;&lt;img src="https://community.esri.com/t5/image/serverpage/image-id/52957iA1BFE8F1076B33E5/image-size/large?v=v2&amp;amp;px=999" role="button" title="mdun_0-1665051754937.png" alt="mdun_0-1665051754937.png" /&gt;&lt;span class="lia-inline-image-caption" onclick="event.preventDefault();"&gt;mdun_0-1665051754937.png&lt;/span&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;And here is the script I try to run (created from bits and pieces, there will be surely other errors after...):&lt;/P&gt;&lt;LI-CODE lang="python"&gt;# Import libraries
from arcgis.gis import GIS
from arcgis import features
import pandas as pd

# Connect to the GIS
gis = GIS(url='https://XXX.XXX.org/portal')

csv_file = r'C:\CSV_TIR\POI.csv'
csv_item = gis.content.get('XXX')
# csv_item = target.content.get(csv_item['XXX'])

from arcgis.features import FeatureLayerCollection
csv_featurelayercoll = FeatureLayerCollection.fromitem(csv_item)

#call the overwrite() method which can be accessed using the manager property
csv_featurelayercoll.manager.overwrite(csv_file)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 10:37:27 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219258#M34214</guid>
      <dc:creator>mdun</dc:creator>
      <dc:date>2022-10-06T10:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219338#M34219</link>
      <description>&lt;P&gt;In fact I'm not sure I run the script correctly (when I said I'm new with Python...).&lt;/P&gt;&lt;P&gt;If I do instead:&lt;/P&gt;&lt;LI-CODE lang="c"&gt;(load_csv) C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\Scripts&amp;gt;python "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\Scripts\overwrite_feature_layer.py"&lt;/LI-CODE&gt;&lt;P&gt;I get this error:&lt;/P&gt;&lt;LI-CODE lang="markup"&gt;Traceback (most recent call last):
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\Scripts\overwrite_feature_layer.py", line 10, in &amp;lt;module&amp;gt;
    csv_item = gis.content.get('XXX')
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\__init__.py", line 5880, in get
    raise e
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\__init__.py", line 5870, in get
    item = self._portal.get_item(itemid)
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\_impl\_portalpy.py", line 1416, in get_item
    return self.con.post("content/items/" + itemid, self._postdata())
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 1412, in post
    force_bytes=kwargs.pop("force_bytes", False),
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 900, in _handle_response
    self._handle_json_error(data["error"], errorcode)
  File "C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\envs\load_csv\lib\site-packages\arcgis\gis\_impl\_con\_connection.py", line 923, in _handle_json_error
    raise Exception(errormessage)
Exception: You do not have permissions to access this resource or perform this operation.
(Error Code: 403)&lt;/LI-CODE&gt;&lt;P&gt;(where "XXX" is the id of the layer of course).&lt;BR /&gt;Is this second way to run the script more correct?&lt;/P&gt;</description>
      <pubDate>Thu, 06 Oct 2022 14:29:45 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219338#M34219</guid>
      <dc:creator>mdun</dc:creator>
      <dc:date>2022-10-06T14:29:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219938#M34253</link>
      <description>&lt;P&gt;From a "best practices" perspective you should store your python somewhere not privileged, C:\Program Files is probably the worst place. Also personally I hate paths with spaces in them, they always cause problems for me eventually somewhere. (So, Microsoft blew it when they named it "Program Files"! &lt;span class="lia-unicode-emoji" title=":slightly_smiling_face:"&gt;🙂&lt;/span&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;Anyway -- just don't do that, put them someplace like for example C:\Users\YOURACCOUNT\scripts&lt;/P&gt;&lt;P&gt;I usually keep them with the project I am working on so I can find them later. C:\Users\MYACCOUNT\Documents\MYPROJECTNAME\scripts\&lt;/P&gt;&lt;P&gt;Since your command line prompt says (load_csv) on it I assume you got conda going and activated it added the modules. That means in that command window that python works from anywhere, you don't need to be in the folder C:\Program Files\ArcGIS\Server\framework\runtime\ArcGIS\bin\Python\Scripts and that is probably the wrong place anyway.&lt;/P&gt;&lt;P&gt;If you do "conda info" it will tell you everything it knows about the active set up, the first two lines will show the environment which is probably "load_csv" for you and then the location, for me right now it's&lt;/P&gt;&lt;LI-CODE lang="c"&gt;$ conda info
    active environment : arcgispro29
    active env location : C:\Users\bwilson\.conda\envs\arcgispro29
.
.
.&lt;/LI-CODE&gt;&lt;P&gt;If I run python while the conda environment is activated, then it will point at the one in "C:\Users\bwilson\.conda\envs\arcgispro29"&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;It's probably running the right python in your test (the one in the load_csv environment). To get it to run the wrong one (the one in Program Files) you would need to put a dot in front like ".\python" to say "use the python right here in this folder not the one on my PATH".&lt;/P&gt;&lt;P&gt;I think the problem now is you are not logging in and you are asking for access to a restricted service in GIS, try adding username and password, for example "gis = GIS(url,user,pass)"&lt;/P&gt;&lt;P&gt;The error code you see (403) is a HTTP "access forbidden" error so it's running the script and hitting the web server and the URL is correct but there are permissions issues.&lt;/P&gt;&lt;P&gt;You could wrap the GIS call in a try / except block to get a friendlier message,&lt;/P&gt;&lt;LI-CODE lang="c"&gt;url="https:///////etc/etc/etc"
user="joe"
pass="secret"
try:
  gis = gis(url,user,pass)
except Exception as e:
  print("Login failed,",e)
  exit(-1)&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Fri, 07 Oct 2022 16:26:10 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1219938#M34253</guid>
      <dc:creator>Brian_Wilson</dc:creator>
      <dc:date>2022-10-07T16:26:10Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222110#M34317</link>
      <description>&lt;P&gt;I've got a handful of datasets that do this. Personally, I would avoid the overwrite method. Unless your schema is changing drastically, you don't need to do it.&lt;/P&gt;&lt;P&gt;You can easily accomplish this with truncate/append, or by using a source/destination comparison to identify rows which actually &lt;EM&gt;need&lt;/EM&gt; updating. Here's a basic truncate/append:&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;LI-CODE lang="python"&gt;from arcgis.gis import GIS
from arcgis.features import GeoAccessor
import pandas as pd

# connect to portal, get destination layer
gis = GIS(profile='your profile')
dest = gis.content.get('itemid').layers[0] # or whatever index it is

# load CSV as dataframe, convert to spatial dataframe
csv_df = pd.read_file('your-file.csv')
csv_sdf = GeoAccessor.from_xy(csv_df, 'lat', 'lon') # or whatever the fields are called for your coordinates

# truncate the destination layer
print(f'Truncating destination layer: {dest.manager.truncate()}')

# load new rows
adds = dest.edit_features(adds=csv_sdf.spatial.to_featureset())
print(f"Adds: {len(adds['addResults'])}")&lt;/LI-CODE&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;&lt;P&gt;By the way, if your situation permits, take a look at using &lt;A href="https://developers.arcgis.com/python/guide/working-with-different-authentication-schemes/#persistent-profiles-details" target="_blank" rel="noopener"&gt;persistent profiles.&lt;/A&gt; Makes automating this stuff nicer, as you don't need to store any credentials in plain text anywhere.&lt;/P&gt;&lt;P&gt;Edited post to add:&lt;/P&gt;&lt;P&gt;As the API docs note, submitting &lt;EM&gt;lots &lt;/EM&gt;of rows through &lt;STRONG&gt;edit_features&lt;/STRONG&gt; can itself be trouble. While the docs recommend using &lt;STRONG&gt;append&lt;/STRONG&gt;, it's not a great alternative, as the source data needs more wrangling, and it never likes to work as simply and directly as &lt;STRONG&gt;edit_features&lt;/STRONG&gt;. You could just use a &lt;STRONG&gt;while&lt;/STRONG&gt; loop and pull rows from your source a couple hundred rows at a time and submit each batch separately. You can still populate a layer pretty quickly this way. One of our layers that goes through a truncate/append process this way has about 50k point features, and it fills in in 1-2 minutes with a not-great internet connection and sub-par processor.&lt;/P&gt;</description>
      <pubDate>Fri, 14 Oct 2022 16:05:05 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222110#M34317</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-10-14T16:05:05Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222530#M34335</link>
      <description>&lt;P&gt;Thank you Josh for your help and hints. I don't understand why according to you the overwrite method is not your preferred one. To me it seems the most straightforward, not only as a concept but also in coding. Isn't it?&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 16:21:55 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222530#M34335</guid>
      <dc:creator>mdun</dc:creator>
      <dc:date>2022-10-17T16:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: How to schedule data update - CSV file  (not in AGOL)</title>
      <link>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222563#M34337</link>
      <description>&lt;P&gt;It may make for shorter code, and seems straightforward for the end user, but it's a blunt instrument. It's like bulldozing and rebuilding a house just to repaint the kitchen.&lt;/P&gt;&lt;P&gt;Sure, it works, and the end result is an updated layer, but the process is literally creating a brand new service definition, uploading it to your portal, then calling a publish request on that uploaded file, while also removing and replacing the existing files. On the backend, it is much &lt;EM&gt;less &lt;/EM&gt;straightforward, and greatly increases the points at which errors may occur.&lt;/P&gt;&lt;P&gt;Alternatively, consider truncate / append. The process is literally:&lt;/P&gt;&lt;OL&gt;&lt;LI&gt;Remove all data from layer&lt;/LI&gt;&lt;LI&gt;Load in new data&lt;/LI&gt;&lt;/OL&gt;&lt;P&gt;The complexity on both sides is the same, and at no point in the process is the layer's schema or layer order being touched.&lt;/P&gt;&lt;P&gt;Rule of thumb: overwriting is for big changes to schema or layer arrangement, but is otherwise overkill.&lt;/P&gt;</description>
      <pubDate>Mon, 17 Oct 2022 17:47:46 GMT</pubDate>
      <guid>https://community.esri.com/t5/arcgis-enterprise-questions/how-to-schedule-data-update-csv-file-not-in-agol/m-p/1222563#M34337</guid>
      <dc:creator>jcarlson</dc:creator>
      <dc:date>2022-10-17T17:47:46Z</dc:date>
    </item>
  </channel>
</rss>

