What are you exporting them to? What is your target data form?
the data stored in the SQL is basically an ical file, all the data is there.
You could export everything using some kind of automated web interface (curl scripting) where you just download an the .ics file.
if you want more than that, I wrote a perl script to export calendar data from the OLD Atlassian calendars. Note this is NOT the Team Calendars & so it won't work but it will give you an idea how you can do it yourself
the code is here:
Thanks for sharing with the community, Matthew!
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Yim,
All "Team Calendar" plugin data is stored in Confluence DB under the BANDANA table. In order to list all of your TeamCal data hyou could execute this SQL query
SELECT * FROM bandana WHERE BANDANACONTEXT LIKE '%CALENDAR_%';
Hope it helps.
Cheers,
Septa Cahyadiputra
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Not a problem, it was my pleasure :).
Cheers
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hello,
Sorry for further query. Is it possible to query/extract data from SQL in a more usable form ? For eg. a way to export all caldendars in Wiki ?
Thanks
Deepak
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.