How to list all of the calendars your Confluence users had subscribed to
プラットフォームについて: Server および Data Center のみ。この記事は、Server および Data Center プラットフォームのアトラシアン製品にのみ適用されます。
Support for Server* products ended on February 15th 2024. If you are running a Server product, you can visit the Atlassian Server end of support announcement to review your migration options.
*Fisheye および Crucible は除く
目的
If you are an administrator of Confluence and you'd like to list all of the Calendars your Confluence users had subscribed to in your Confluence instance, you may then use the following query.
ソリューション
To list all of the Calendars your users had subscribed to in your Confluence instance, together with the subscription date:
The following query was tested on PostgreSQL and MySQL
SELECT um."username" AS "Username", tc."NAME" AS "Calendar Name", to_timestamp(CAST(tc."CREATED" AS bigint)/1000) AS "Subscription Date" FROM "AO_950DC3_TC_SUBCALS" tc
LEFT JOIN "user_mapping" um ON um."user_key" = tc."CREATOR"
WHERE tc."CREATOR" = um."user_key"
AND "PARENT_ID" IS NULL
AND "SUBSCRIPTION_ID" IS NOT NULL;
SELECT um.username AS Username, tc.NAME AS CalendarName,
FROM_UNIXTIME(tc.CREATED/1000) AS SubscriptionDate
FROM AO_950DC3_TC_SUBCALS tc
LEFT JOIN user_mapping um ON um.user_key = tc.CREATOR
WHERE tc.CREATOR = um.user_key
AND PARENT_ID IS null
AND SUBSCRIPTION_ID IS NOT NULL;
The "SUBSCRIPTION_ID" IS NOT NULL
will filter out the Creator of the calendar. If you wish to get the result together with the Creator of the calendar, you can remove the line.