Confluence 3.5 : How do I obtain content that hasn't been modified in a certain period of time
This page last changed on Apr 12, 2010 by smaddox.
Via the Archiving PluginThe Archiving Plugin is a great tool for managing outdated content. Via SQLThis 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'; |
![]() |
Document generated by Confluence on Mar 16, 2011 18:51 |