ArcMap 10.4 performs slowly when displaying a query layer that includes null geometries.
上次发布: August 25, 2017ArcGIS for Desktop
漏洞 ID 编号
BUG-000095527
已提交
April 5, 2016
上次修改时间
June 5, 2024
适用范围
ArcGIS for Desktop
找到的版本
10.4
操作系统
Windows OS
操作系统版本
2012
状态
Will Not Be Addressed
开发团队已考虑过该问题或请求,并决定不会解决该问题。 问题的“其他信息”部分可能包含进一步说明。
附加信息
None of the tables on which all these views are based have any useful indexes build. Add the following indexes;
CREATE SPATIAL INDEX [EnergyInvestments_spidx] ON [sde].[EnergyInvestments]
(
[pointLocation]
)USING GEOMETRY_AUTO_GRID
WITH (BOUNDING_BOX =(-170.70199941404, -14.278100285562, 171.38100342762, 66.5640293312806),
CELLS_PER_OBJECT = 16)
CREATE NONCLUSTERED INDEX [ProgramLookup_idx] ON [sde].[ProgramLookup]
(
[ProgramName] ASC
)
CREATE NONCLUSTERED INDEX [ModifiedProgramName_idx] ON [sde].[EnergyInvestments]
(
[ModifiedProgramName] ASC
)
CREATE NONCLUSTERED INDEX [EIGeocoding_EnergyInvestmentID_idx] ON [sde].[EIGeocoding]
(
[EnergyInvestmentID] ASC
)
and the view performance will be substantially improved.
See http://support.esri.com/en/technical-article/000014760 for additional information.