How to get DB2 MQT last refresh time

风格不统一 提交于 2019-12-06 01:04:52

You can find the last refresh timestamp in the REFRESH_TIME column on the table SYSIBM.SYSVIEWS

You could use the following SQL to retrieve the last refresh timestamp for a specific table:

SELECT REFRESH_TIME
FROM SYSIBM.SYSVIEWS
WHERE NAME = ?
AND CREATOR = ?
AND TYPE = 'M'

See the IBM documentation for the SYSIBM.SYSVIEWS table for more information.

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!