|
DOC
|
@GregCarlino2 did you stop the ArcGIS Server service before executing the script?
... View more
07-15-2022
10:07 AM
|
0
|
0
|
33046
|
|
POST
|
Hi @MarioBruschi I've seen this error when an components were reinstalled individually in the past. Unfortunately, you have to upgrade each application individually.
... View more
07-14-2022
06:09 AM
|
0
|
1
|
2330
|
|
POST
|
If your GeoEvent Definition has Groups within it, you will not be able to use that definition to create your feature service. You would have two options, create the geoevent definition manually, and then create your feature service in GeoEvent, or create a feature class in ArcGIS Pro and publish the feature service.
... View more
07-13-2022
04:40 AM
|
0
|
1
|
2146
|
|
POST
|
@LuisEduardoPerezGraterol yes you can, but there are additional steps you need to take. See the following help document: https://desktop.arcgis.com/en/arcmap/latest/manage-data/editing-fundamentals/about-editing-data-from-feature-services.htm
... View more
07-12-2022
08:22 AM
|
1
|
0
|
1310
|
|
POST
|
@JonSwoveland you should be able to install Notebook Server with an existing ArcGIS Server instance, though it is usually not recommended. Instead, though, you could schedule the script to run from a machine that has ArcGIS Pro or ArcGIS Server installed. Take a look at the following document for more details.
... View more
07-12-2022
07:31 AM
|
1
|
3
|
3851
|
|
POST
|
Hi @ElviraForslund, As a test, are you able to write event to a feature service?
... View more
07-12-2022
07:25 AM
|
0
|
1
|
2171
|
|
POST
|
@RonBolesky you can enable editor tracking on the hosted feature service: https://doc.arcgis.com/en/arcgis-online/manage-data/data-access-and-editing.htm#ESRI_SECTION1_706C909AECFB45B38E690DA1B16F8EFF
... View more
07-12-2022
07:18 AM
|
0
|
0
|
687
|
|
POST
|
Hi @Bud, Here is an example of creating a table, inserting points, inserting into the user_sdo_geom_metadata table, creating the index, and then registering with your geodatabase: create table SDO_Points (OID number(38) not null unique, TestID number, shape SDO_GEOMETRY);
Insert into SDO_Points values (1, 1, SDO_GEOMETRY(4001, 8260, null, SDO_ELEM_INFO_ARRAY(1, 1, 1), SDO_ORDINATE_ARRAY(10.0, 10.0, 10, 1100)));
Insert into SDO_Points values (2, 2, SDO_GEOMETRY(4001, 8260, null, SDO_ELEM_INFO_ARRAY(1, 1, 1), SDO_ORDINATE_ARRAY(10.0, 20.0, 20, 1200)));
Insert into SDO_Points values (3, 3, SDO_GEOMETRY(4001, 8260, null, SDO_ELEM_INFO_ARRAY(1, 1, 1), SDO_ORDINATE_ARRAY(10.0, 30.0, 30, 1300)));
Insert into SDO_Points values (4, 4, SDO_GEOMETRY(4001, 8260, null, SDO_ELEM_INFO_ARRAY(1, 1, 1), SDO_ORDINATE_ARRAY(10.0, 40.0, 40, 1400)));
insert into user_sdo_geom_metadata values ('SDO_Points', 'SHAPE', SDO_DIM_ARRAY(SDO_DIM_ELEMENT('Lat', -90, 90, 0.05), SDO_DIM_ELEMENT('Long', -180, 180, 0.05), SDO_DIM_ELEMENT('Elevation', 0, 5000, 0.05), SDO_DIM_ELEMENT('M', 0, 5000, 0.05)), 8260);
create index SDO_8260_4D_Point_indx on SDO_Points(shape) indextype is mdsys.spatial_index; Last step is to execute the Register with Geodatabase tool in ArcGIS Pro/ArcMap.
... View more
06-16-2022
04:35 AM
|
1
|
1
|
2594
|
|
DOC
|
@Brian_Wilson good call on the re.sub expression. I've updated the script to only update whole words.
... View more
06-13-2022
08:34 AM
|
0
|
0
|
33259
|
|
DOC
|
@Brian_Wilson you are right, updating the Data Store connection file updated the data source of the services. Originally, I tried this with a customer and we both thought the connections were not updated due to Service Workspaces in Server Manager showing the original instance information (i.e. screen shot in the Results section of the document). The workflow above will update that information. The replace option on line 127 will only update the manifest.json for a service that contained the previousDSID value. It will not crawl through every file in the config-store directory/sub-directory updating occurrences of the previous SQL instance.
... View more
06-12-2022
03:52 PM
|
0
|
0
|
33312
|
|
DOC
|
@Brian_Wilson let me know how the script works out for you.
... View more
06-11-2022
09:07 AM
|
0
|
0
|
33369
|
|
DOC
|
After moving your SQL Server instance to a new server, this guide will show you how to update your ArcGIS Server services. Additionally, it will demonstrate how to update file-based services that use data from a file geodatabase, such as map and image services, after the network share has changed. Scenario It might be necessary for you to move your SQL Server geodatabase to a different server. The 2022 instance, for instance, might be on a different server when you upgrade from SQL Server 2019 to SQL Server 2022. With a database backup and restore, moving the geodatabase is simple. However, what about updating your ArcGIS Server services? The services will use the SQL instance name if they are referencing information from your enterprise geodatabase. This can be fixed by re-mapping the data sources in your Pro Projects/MXDs, and then re-publishing your services. But what if you have dozens, or hundreds, of services? This can be extremely time consuming. The below video will show how you can update all of your services with a couple of python scripts. Note: Before executing the scripts, be sure you have made a copy of the \arcgisserver\config-store\services and \arcgisserver\directories\arcgissystem\arcgisinput directories.
... View more
06-09-2022
10:09 PM
|
30
|
112
|
60557
|
|
POST
|
@JosephHilliard94 you could use AGOL Notebook Server. Take a look at the following document. It has similar functionality to what you're trying to do, and could be revamped to run in Notebook Server.
... View more
05-24-2022
09:42 AM
|
0
|
0
|
2323
|
|
DOC
|
@JonathanWhite1 no, you would have to execute the script separately for each table.
... View more
05-24-2022
09:40 AM
|
0
|
0
|
58354
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 07-08-2026 12:27 PM | |
| 4 | 05-07-2020 05:14 PM | |
| 1 | 03-25-2026 04:16 AM | |
| 1 | 03-16-2026 01:00 PM | |
| 1 | 12-22-2025 10:39 AM |
| Online Status |
Offline
|
| Date Last Visited |
Friday
|