Dear experts,
I have a spatial view with 25 columns in the database server that looks like this:
SELECT a.OBJECTID, a.Shape, a.KEYID, a.ROTATION, a.LAND_COVER, a.LAND_USE, a.COMPANY, b.Species, b.SpeciesGroup, c.Tipe
FROM sde.LANDUSE AS a LEFT OUTER JOIN
gdb.dbo.StandReg AS b ON a.KEYID = b.KEYID LEFT OUTER JOIN
(SELECT Dist, created_by, updated_by
FROM gdb.dbo.Petak_PSDS
WHERE (Dist = 'District 1')) AS c ON a.KEYID = c.cKeyId
(the query has been truncated, not all columns are mentioned)
This View comprised of 3 tables. The view has 7600 data in it. I open it in my PC using arcmap / arccatalog and it takes around 4 minutes to load up. I have used analyze and update_dbms_stat and its still the same. Also there are no errors spatially.
How can i make it load faster ?
BTW, is view replicate-able using One-Way replication ?
Thanks
[arcsde 10.0, sql server 2005]