How do I obtain content that has not been modified in a certain period of time?
目的
To find content that has not been modified since a specified date.
ソリューション
Via the Archiving Plugin
The Archiving Plugin is a great tool for managing outdated content.
Via SQL
This can be achieved by running the following SQL query on your Confluence database.
select * from content as c, spaces as s where c.spaceid = s.spaceid and s.spacename='INSERT SPACE NAME HERE' and c.LASTMODDATE < 'INSERT DATE HERE';
最終更新日: 2016 年 2 月 26 日
Powered by Confluence and Scroll Viewport.