博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
syscat.tables系统表的npages和fpages区别
阅读量:6452 次
发布时间:2019-06-23

本文共 442 字,大约阅读时间需要 1 分钟。

hot3.png

npages:Total number of pages on which the rows of the table exist; -1 for a view or alias, or if statistics are not collected; -2 for a subtable or hierarchy table. 

fpages:Total number of pages; -1 for a view or alias, or if statistics are not collected; -2 for a subtable or hierarchy table.

 

解释:在某些场合下,如:大量删除操作后,有的数据页虽然未收回,但实际上不包含有效数据

        npages表示包含有效数据的页数

        fpages表示总的页数

        fpages - npages 表示包含无效数据的页数

 

转载于:https://my.oschina.net/goopand/blog/343699

你可能感兴趣的文章
os.walk函数
查看>>
[Unity3d]DrawCall优化手记
查看>>
细数.NET 中那些ORM框架 —— 谈谈这些天的收获之一
查看>>
SQL Serever学习7——数据表2
查看>>
洛谷——P2404 自然数的拆分问题
查看>>
(转)Mac 下设置android NDK的环境
查看>>
[struts]s:action 的使用方法
查看>>
dubbo问题总结
查看>>
20165320 第三周学习总结
查看>>
Struts2和Spring MVC的区别
查看>>
angular-bootstrap ui-date组件问题总结
查看>>
理解Javascript参数中的arguments对象
查看>>
p2:千行代码入门python
查看>>
bzoj1106[POI2007]立方体大作战tet*
查看>>
spring boot configuration annotation processor not found in classpath问题解决
查看>>
【转】正则基础之——神奇的转义
查看>>
团队项目测试报告与用户反馈
查看>>
MyBatis(1)——快速入门
查看>>
对软件工程课程的期望
查看>>
CPU高问题排查
查看>>