GBase 8s
适配迁移
问答

索引的总大小太大或者索引中有太多的部分

发表于2024-09-26 16:31:2872次浏览7个评论



请问怎么解决 空表

评论

登录后才可以发表评论
用户头像
曾阿牛发表于 1年前
需要看一下dict_code字段的数据类型
GBase用户18503发表于 1年前
@曾阿牛
GBase用户18503发表于 1年前
@曾阿牛:VARCHAR(1020)
用户头像
liaosnet发表于 1年前
索引长度是有限制的。。一般情况下:
2K page size = 387
4K page size = 796
8K page size = 1615
12K page size = 2435
16K page size = 3254
GBase用户18503发表于 1年前
@liaosnet:超过的就没办法建索引?
hugolin发表于 1年前
@GBase用户18503:select distinct t.dbsname database, d.name dbspace,c.pagesize pagesize
from sysmaster:sysdbstab d,sysmaster:syschunks c,sysmaster:sysextents t
where t.chunk = c.chknum
and c.dbsnum=d.dbsnum
and t.dbsname='testdb'
and t.tabname='test';
用户头像
柒柒天晴发表于 2个月前
厉害了