How to list all of the calendars your Confluence users had subscribed to

Still need help?

The Atlassian Community is here for you.

Ask the community

Platform notice: Server and Data Center only. This article only applies to Atlassian products on the Server and Data Center platforms.

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.

*Except Fisheye and Crucible

Purpose

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. 

Solution

To list all of the Calendars your users had subscribed to in your Confluence instance, together with the subscription date:

(warning) The following query was tested on PostgreSQL and MySQL

Postgres
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;
MySQL
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;

(info) 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.

Last modified on Jun 22, 2023

Was this helpful?

Yes
No
Provide feedback about this article
Powered by Confluence and Scroll Viewport.