Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

Where are calendars stored?

Lennart Bonnevier
I'm New Here
I'm New Here
Those new to the Atlassian Community have posted less than three times. Give them a warm welcome!
January 26, 2017

When I "Create" a team calendar in Confluence, where are data stored? In the local space or in some global "calendar-space"? Or somewhere else?

1 answer

1 accepted

0 votes
Answer accepted
Jonas Andersson
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
January 26, 2017

Hi Lennart,

They are stored in a TC_EVENTS table in the mysql database, and can be queried like this;

select
        SUMMARY,
        DESCRIPTION,
        FROM_UNIXTIME(SUBSTRING(START, 1, 10)) AS Start,
        FROM_UNIXTIME(SUBSTRING(END, 1, 10)) AS End,
        ALL_DAY
    from AO_<HEXNUMBER>_TC_EVENTS where SUB_CALENDAR_ID="<UNIQUE.ID.OF.CALENDER>"
    order by start;

I do the FROM_UNIXTIME transformation to get somewhat readable dates out of it..

Not sure if this is a path you want/can walk, but it's something..

Mvh

Jonas

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events