Just heard back from ESRI support and they are experiencing the same issue with the data I sent them. I will post findings.
Yes, something is wrong. File geodatabase should be a bit faster, but not bytwo orders of magnitude. Full table queries should always be bound by I/Oaccess to the table blocks.- V
It sounds like you need to export this event layer into a feature class.- V
It's hard to tell what the issue might be without further clarification --What version of SQL-Server are you using? Express, Standard, or Enterprise?What version of ArcGIS are you using?Did you load the point data into an ArcSDE layer? What storage formatDo you have a spatial index built?- V
--TRUNCATE TABLE Temp_Prod_Data; DROP TABLE Temp_Prod_Data; CREATE TABLE [dbo].[Temp_Prod_Data]( [client] [varchar](50) NULL, [ownerno] [varchar](25) NULL, [propertyno] [varchar](25) NULL, [lease] [varchar](50) NULL, [API] [varchar](25) NULL, [LPD_ID] [varchar](25) NULL, [well_name] [varchar](50) NULL, [WELL_NUM] [varchar](15) NULL, [COUNTY] [varchar](50) NULL, [STATE] [varchar](2) NULL, [OPERATOR] [varchar](50) NULL, [YYYYMM] [varchar](10) NULL, [ProdDateT] [datetime] NULL, [ProdDate] [varchar](25) NULL, [GAS] [float] NULL, [OIL] [float] NULL, [Latitude] [float] NULL, [Longitude] [float] NULL, [DEPTH] [int] NULL ) ON [PRIMARY] GO INSERT INTO Temp_Prod_Data (client, ownerno, propertyno, lease, API, LPD_ID, well_name, WELL_NUM, COUNTY, STATE, OPERATOR, YYYYMM, ProdDate, GAS, OIL, Latitude, Longitude, DEPTH) Exec [trinitylt\SQL2008].[LandTracker].dbo.sp_Prod_Data_5_year_Export; SELECT * FROM Temp_Prod_Data;
Signed in members can post, follow updates, and more. New here? Register a free account.
Find useful guides, FAQs, and documents to help you navigate and make the most of Esri Community.