I found different suggestions for this so far. Some Page claimed that it is stored in a Questions space (which I can't find) another Page said it is stored in the CONTENT Table under a plugin key. There too I can't find anything which refers to questions.
Also the AO Tables seem to be misleading.
The documentation is lacking this information as well.
We are on the evaluation and this question where it stores the data is quite crucial for us.
Please give me a hint if you have more insight.
For us it is a crucial point to being able to keep the data even if the eval has the outcome that this questions is not the correct solution for out purposes.
Can you point me to the tables where the data is stored?
Hi Frank,
The Q&A stores data in following tables:
- AO_B1DBB9_ACCEPTANCE
- AO_B1DBB9_BOUNTY
- AO_B1DBB9_VOTE
- CONTENT
- BODYCONTENT
All question can be found using that query:
SELECT * FROM %YOURCONFLUENCEDBNAME%.CONTENT
where PLUGINKEY in
('com.atlassian.confluence.plugins.confluence-questions:question)
All answers can be fetched using this query:
SELECT * FROM %YOURCONFLUENCEDBNAME%.BODYCONTENT b
where b.CONTENTID in (
SELECT a.CONTENTID FROM %YOURCONFLUENCEDBNAME%.CONTENT a
where a.PLUGINKEY in
('com.atlassian.confluence.plugins.confluence-questions:answer'
))
Very useful. Thanks.