如何查询要素类的空间索引大小?

arcmap 10.4,要素类的属性,只能看到有没有空间索引,但没显示空间索引长度。请问怎么查看?
已邀请:

张佳期

赞同来自:

可以通过add spatial index工具实现

cannel

赞同来自:

自问自答。最后发现是pg版sde的原因,pg版的空间索引没有索引大小的概念
上面大哥说的add spatial index的gp确实能看oracle版sde的索引大小,但pg版不行

刘锋

赞同来自:

sde=# \d test
                    数据表 "sde.test"
   栏位   |     类型      | Collation | Nullable | Default
----------+---------------+-----------+----------+---------
 objectid | integer       |           | not null |
 code | numeric(38,8) |           |          |
 area | numeric(38,8) |           |          |
 value    | numeric(38,8) |           |          |
 shape    | st_geometry   |           |          |
索引:
    "r58_sde_rowid_uk" UNIQUE, btree (objectid) WITH (fillfactor='75')
    "a48_ix1" gist (shape)


sde=# select pg_size_pretty(pg_relation_size('a48_ix1'));
 pg_size_pretty
----------------
 13 MB
(1 行记录)

要回复问题请先登录注册