如何查看某表index的fillfactor

huguozhi
如何查看某表index的fillfactor

虽然从onstat -c|grep -i fillfactor
FILLFACTOR      90              # Fill factor for building indexes

可以看到当前的配置,

但有无办法看到某表index建立时引用的FILLFACTOR是多少呢?

dbschema -ss好像是看不到的

日月如尧
关注一下,我也不知道怎么看index建立时引用的FILLFACTOR是多少

wuicpp
dbschema -d db_name -t tab_name -ss 输出的创建表脚本及表上索引的脚本里面如果有fillfactor就是自定义大小,如果没有就是onconfig中默认大小。

huguozhi
回复 #3 wuicpp 的帖子

dbschema -ss也看不到的