I have a db view in Oracle 18c (EGDB; ST_GEOMETRY):
create or replace view startpoint_vw as (
select
objectid,
treat(sde.st_startpoint(shape) as sde.st_geometry) as shape --https://gis.stackexchange.com/a/385767/62572
--https://support.esri.com/en/Technical-Article/000011333
from
my_owner.sidewalks --14,524 features
where
sde.st_numgeometries(shape) = 1 --The SQL will fail if there are any multi-part features. Temporary workaround: exclude multi-part features from this view.
)
Using Catalog in ArcGIS Pro 2.6.8, I want to right-click --> copy/paste that view to a FGDB (the view gets pasted as a FC).
Reason: Quickly take a snapshot of the data for geoprocessing purposes, publishing to AGOL as a FC, etc.
Problem: When I paste the view into the FGDB, ArcGIS Pro crashes about 50% of the time.
- When I re-open Pro after the crash, a FC has been created, but not all of the features were inserted. The number of features that were inserted is usually a multiple of 1000 (i.e. 2000, 4000, 8000, etc.).
- For the other 50% of the time, the view will paste as a FC without issue (all features successfully created).
I have the same problem when I paste as a FC into SDE (the same environment as the source environment). ArcGIS Pro crashes.
Has anyone had that problem when pasting views? Any ideas?