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.