データベースを介して特定のページからすべての制限を削除する方法
目的
If you'd like to remove page level permissions for a specific page via the database
ソリューション
- Confluence をシャットダウンします。
- データベースのバックアップを取得します。
Run below queries to replacing
page title and the spaceid
you'd like to have the permissions removed from:
データベースの変更を行う場合は必ず事前にバックアップを取得してください。可能な場合は、まずステージング サーバーで SQL コマンドの変更、挿入、更新、または削除を行うようにします。
DELETE from CONTENT_PERM WHERE CPS_ID IN (select ID from CONTENT_PERM_SET WHERE CONTENT_ID IN (select CONTENTID from CONTENT where title='page title' and spaceid = 'spaceid where the page is housed'));
DELETE from CONTENT_PERM_SET WHERE CONTENT_ID IN (select CONTENTID from CONTENT WHERE title='page title' and spaceid = 'spaceid where the page is housed');
- Confluence を起動します。
Last modified on Mar 21, 2024
Powered by Confluence and Scroll Viewport.