|
POST
|
Thanks Vince. I know I have read an article about the original work someplace... but my google skills are failing me. What about the geometric network? Do you know when that was released?
... View more
11-19-2021
10:43 AM
|
0
|
1
|
2154
|
|
POST
|
What year was SDE versioning released? And who came up with the original system? I seem to recall it was some Australian professor. Wikipedia suggests that SDE was released in 1995 was versioning part of the original systems? https://en.wikipedia.org/wiki/ArcSDE
... View more
11-18-2021
10:27 AM
|
0
|
4
|
2214
|
|
POST
|
The polygon looks like it is multipart, e.g. the the islands off the cost. I have never tried extract by mask with a multipart polygon. What happens if you remove the islands? You could also simplify (reduce the number of vertexes) the mask polygon as @curtvprice suggested. If this was me I would create a very simple test polygon with only three or four vertexes and test that. Then go from there.
... View more
11-18-2021
09:57 AM
|
1
|
5
|
3810
|
|
POST
|
what about having the variance/regulation in a related table?
... View more
11-05-2021
03:16 PM
|
0
|
2
|
2012
|
|
POST
|
Cool idea, the same thing happens to us. And we do have a task restarts the services every night in an attempt to keep them working (sometimes they get hung up). And I don't bother deleting the emails... I just ignore them 🙂 We have it setup with a windows scheduled task. The task fires off a .bat. The .bat stops and starts monitor and creates a log file. So, a slightly different approach. echo %date% %time%
net stop "ArcGIS Monitor Server"
net stop "ArcGIS Monitor Service MonitorService"
net start "ArcGIS Monitor Server"
net start "ArcGIS Monitor Service MonitorService"
echo %date% %time% What about SDE? While stopping the monitor service may be fine for AGS we would not want to lose the database metrics for a chunk of every night.
... View more
11-02-2021
11:29 AM
|
0
|
0
|
1331
|
|
POST
|
I am trying to understand if a service is set up as a shared or dedicated instance: https://enterprise.arcgis.com/en/server/10.8/administer/windows/configure-service-instance-settings.htm#ESRI_SECTION1_C10993BA9EC94D6DA0BB87E4EDD0ED31 But I don't see the setting in server manager? What am I missing? ArcGIS Server 10.7.1 (federated with Portal)
... View more
11-01-2021
12:56 PM
|
0
|
2
|
1319
|
|
POST
|
What about updating the web layer and not overwriting it? https://developers.arcgis.com/python/sample-notebooks/updating-features-in-a-feature-layer/
... View more
10-13-2021
10:13 AM
|
0
|
5
|
2267
|
|
POST
|
Thanks Steven. Right. The fields in question only get edited by the evw jobs and they are mostly static values, i.e. once set they are unlikely to change. So, I think the conflicts will be low.
... View more
10-12-2021
04:20 PM
|
0
|
0
|
2003
|
|
POST
|
We have a feature class in sde that is not compressing as expected. database Oracle ArcGIS version 10.6.1 My understanding is that if an A row edit state is not linked to a version it is eligible for compression. So, I have made up a SQL query to find said rows. --versions that join to states
with lina as
(select s.lineage_name
from XXXX.a106 a
join sde.states s
on a.sde_state_id = s.state_id),
linv as
(select v.owner, v.name, s.lineage_name
from sde.versions v
join sde.states s
on v.state_id = s.state_id)
select linv.owner, linv.name, count(*) as a_row_edit_num
from lina
left join linv
on linv.lineage_name = lina.lineage_name
group by linv.owner, linv.name
order by 3 desc This query is reporting ~500,000 A rows without a version. But when I compress none are removed. Before I compress I am: Disconnecting all users Prohibiting new connections Ensuring sde.table_locks has no rows So, I am not sure what I am missing. Is there something wrong with my assumption? Or is my query flawed? Thanks!
... View more
10-12-2021
12:38 PM
|
0
|
3
|
1526
|
|
POST
|
Right, I would use a relationship for this work. Have a primary key in each polygon (PK) this could be the object id (oid)*. Then each land use polygon that intersects your main polygon would get the same value as a foreign key (FK). Then you link the two features classes together with a one to many relationship. https://pro.arcgis.com/en/pro-app/latest/tool-reference/data-management/create-relationship-class.htm *side note: I never use oid for this work they are unreliable and hard to maintain. I would make Global IDs or use some other attribute. But for a school project oid might be fine.
... View more
09-30-2021
04:46 PM
|
1
|
0
|
2447
|
|
POST
|
Is there any risk in editing the default version with an multi-version view (evw) in an sde environment? We have a number of batch jobs that update default version attributes with sql and the evw Database is Oracle We have a high number of versions within the database, ~900. All of the versions have default as parent
... View more
09-29-2021
12:14 PM
|
0
|
3
|
2097
|
| Title | Kudos | Posted |
|---|---|---|
| 1 | 10-04-2024 05:39 PM | |
| 1 | 07-30-2024 09:05 AM | |
| 1 | 07-08-2024 05:32 PM | |
| 1 | 03-20-2024 10:27 AM | |
| 6 | 03-13-2024 03:38 PM |
| Online Status |
Offline
|
| Date Last Visited |
11-12-2025
11:02 AM
|