|
POST
|
ArcGIS Pro 3.0.1: The “add error layers” option is grayed out despite the fact that the validation attribute field is configured, As per the screenshots below, I couldn’t figure out why the “add error layers” option is grayed out despite the fact that the validation attribute field is configured What might be the issue here?
... View more
09-09-2022
10:55 AM
|
0
|
7
|
8414
|
|
POST
|
ArcGIS Pro 3.0.1: How to select a map that contains error layers in the “error inspector” pane when working with attribute rules? I couldn’t figure out how to select a map that contains error layers in the “error inspector” pane. Some attribute rules are already configure for one of the layers as per the screenshots below
... View more
09-09-2022
04:40 AM
|
1
|
0
|
1285
|
|
POST
|
ArcGIS Pro 3.0.1: The “duplicate vertex” attribute rule fails to be saved, As per the screenshot, the “duplicate vertex” attribute rule fails to be saved What could be the issue here?
... View more
09-09-2022
04:21 AM
|
0
|
2
|
1798
|
|
POST
|
What’s given here is the Parcels table and Owners table. In the real life, we need to create another table that accommodates parcels with their owners: one parcel can be owned be many owners one owner can owe many parcels How this table can be structured according to the best practices?
... View more
09-08-2022
07:55 AM
|
0
|
0
|
882
|
|
POST
|
The good thing in Pro that the name of the user is displayed with the name of the version. Both the parent and child versions are accessed with the sa user which makes it possible to post the edits from the child to the protected parent. The child is accessed by the sa by adding the layer by sa (as usual) but then switching the version to child
... View more
09-04-2022
08:44 AM
|
0
|
0
|
2829
|
|
POST
|
ArcGIS Enterprise (Pro 3.0.1): The “version changes” window doesn’t list the changes in the parent (default) version as it does for the child versions, As per the screenshots below, I observed that the version changes” window don’t display the changes in the parent (default) version as it does for the child versions. Is this by design?
... View more
09-02-2022
11:23 PM
|
0
|
0
|
896
|
|
POST
|
ArcGIS Enterprise (Pro 3.0.1): The imagery gets shifted in the “version changes” window, As per the screenshot below, despite the fact that the feature classes and the imagery align correctly on the map, they fail to do so when appearing in the “version changes” windows. They got shifted. Is this a bug?
... View more
09-02-2022
11:11 PM
|
0
|
0
|
396
|
|
POST
|
Great. It works fine with no issues. The comparison demonstrates a slight difference when performing the “select by attribute” tool on an indexed data and a nonindexed for a data of around 340,000 records as per the screenshot below. # -*- coding: utf-8 -*-
"""
Generated by ArcGIS ModelBuilder on : 2022-09-02 12:37:39
"""
import arcpy, time
def Model(): # IndexingElapsedTime
# To allow overwriting outputs change overwriteOutput option to True.
arcpy.env.overwriteOutput = True
# Model Environment settings
with arcpy.EnvManager(scratchWorkspace=r"C:\Z8\Q.gdb", workspace=r"C:\Z8\Parcels.gdb"):
Parcels = "Parcels"
# Process: Copy Features (Copy Features) (management)
Output_Feature_Class = "C:\\Z8\\Q.gdb\\Parcels_CopyFeatures"
arcpy.management.CopyFeatures(in_features=Parcels, out_feature_class=Output_Feature_Class, config_keyword="", spatial_grid_1=None, spatial_grid_2=None, spatial_grid_3=None)
# Process: Add Attribute Index (Add Attribute Index) (management)
Parcels_CopyFeatures = arcpy.management.AddIndex(in_table=Output_Feature_Class, fields=["ParcelNumber"], index_name="ParcelNumber", unique="NON_UNIQUE", ascending="NON_ASCENDING")[0]
# Process: Select Layer By Attribute (Select Layer By Attribute) (management)
startTime = time.time()
Parcels_CopyFeatures_Layer, Count = arcpy.management.SelectLayerByAttribute(in_layer_or_view=Parcels_CopyFeatures, selection_type="NEW_SELECTION", where_clause="ParcelNumber = '72'", invert_where_clause="")
endTime = time.time()
elapsedTime = endTime - startTime
print(f"Selection of indexed data took {elapsedTime} seconds to complete")
# Process: Copy Features (2) (Copy Features) (management)
Output_Feature_Class_2_ = "C:\\Z8\\Q.gdb\\Parcels_CopyFeatures1"
arcpy.management.CopyFeatures(in_features=Parcels, out_feature_class=Output_Feature_Class_2_, config_keyword="", spatial_grid_1=None, spatial_grid_2=None, spatial_grid_3=None)
# Process: Select Layer By Attribute (2) (Select Layer By Attribute) (management)
startTime = time.time()
Parcels_CopyFeatures1_Layer, Count_2_ = arcpy.management.SelectLayerByAttribute(in_layer_or_view=Output_Feature_Class_2_, selection_type="NEW_SELECTION", where_clause="ParcelNumber = '72'", invert_where_clause="")
endTime = time.time()
elapsedTime = endTime - startTime
print(f"Selection on nonindexed data took {elapsedTime} seconds to complete")
if __name__ == '__main__':
Model()
... View more
09-02-2022
09:40 PM
|
0
|
0
|
1057
|
|
POST
|
Both parent version and child version are logged in by their owners (sa and u1 respectively) as per the screenshots below. Then I’m still unable to perform the post (from the child to parent) Right. I watched all the available videos and documentation related to versioning, nevertheless, I still do have tons of inquiries. This is why I prefer to post them in the forum. I do appreciate your time and help
... View more
09-02-2022
09:12 PM
|
0
|
0
|
583
|
|
POST
|
ArcGIS Enterprise (Pro 3.0.1): How to “post” from child version to a “protected” parent version? I couldn’t figure out how to “post” from child version to a “protected” parent version. I got a warning message as per the second screenshot
... View more
09-02-2022
01:18 PM
|
0
|
2
|
617
|
|
POST
|
I’m running the script from inside the Pro as per screenshot in my pervious post. What is the correct script for the print that needs to replace: arcpy.AddMessage(f"Selection took {elapsedTime} seconds to complete")
... View more
09-02-2022
12:52 PM
|
0
|
0
|
1064
|
|
POST
|
ArcGIS Enterprise (Pro 3.0.1): The “post” process needs selecting the parent version source and “refreshing” in order to display the result, I couldn’t figure out why the “post” process needs selecting the parent version source and “refreshing” in order to display the result on the geometry and table
... View more
09-02-2022
12:48 PM
|
0
|
0
|
443
|
|
POST
|
ArcGIS Enterprise (Pro 3.0.1): The “reconcile” process has “discard” and “save” options while “post” hasn’t, I couldn’t figure out why the “reconcile” process has “discard” and “save” options while “post” hasn’t.
... View more
09-02-2022
12:45 PM
|
0
|
0
|
307
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 06-16-2026 08:17 AM | |
| 1 | 09-30-2022 10:43 PM | |
| 2 | 05-05-2025 10:33 AM | |
| 1 | 05-08-2025 09:49 PM | |
| 1 | 05-06-2025 11:10 PM |
| Online Status |
Offline
|
| Date Last Visited |
Tuesday
|