POST
|
I haven't dealt much with Query Layers, but for those I have, I would suspect a problem with the Unique ID.
... View more
04-23-2015
11:22 AM
|
0
|
0
|
8
|
POST
|
I'm not sure there is one. What I've used in the past on SQL Server is to: Select all within a distance threshold Order them by distance select rownum = 1 I'm not an expert in Oracle, but I'm in the process of migrating in to it. I'm more familiar w/ SQL Server so I don't have as much experience writing fancy queries and I still haven't learned all the functions, but something like: select q.*, rownum from( select t1.objectid oid1, t2.objectid oid2, sde.ST_Distance(t1.shape, t2.shape) from table t1, table t2 where t1.objectid <> t2.objectid order by sde.ST_Distance(t1.shape, t2.shape) ) q where rownum =1 A lot of spatial queries seem MUCH slower in Oracle compared to SQL Server, but I have a lot to learn.
... View more
02-27-2015
08:04 AM
|
0
|
0
|
19
|
POST
|
THANK-YOU SO MUCH! It works perfectly!!! Response time is now 264 msecs......... SO EXCITING!!!
... View more
02-18-2015
06:37 AM
|
0
|
0
|
30
|
POST
|
How is this question different from a similar thread from not long ago? - V
... View more
02-19-2013
11:48 AM
|
0
|
0
|
15
|
POST
|
UPDATE: Trying to do this outside the Esri environment was clunky and a bit messy. An easier method inside the Esri environment that was just pointed out to me..... In ArcCatalog: Rename the original table (Feature Class), then copy and paste it with the original name. *This is for Stand-alone Features* Way cool......... worked like a charm and maintains all the spatial metadata that Esri requires. Super Impressed!
... View more
12-05-2012
09:03 AM
|
0
|
0
|
5
|
Online Status |
Offline
|
Date Last Visited |
11-11-2020
02:23 AM
|