We are using Comala Document Management on Confluence server and I'd like an overview of all spaces using a Space Workflow (= workflow not defined as global workflow).
I tried creating a SQL query but I don't know where the reference space - workflow is kept.
Hi Charlie,
The following SQL query will display only the spaces that have enabled workflows declared at space level (ignoring linked global workflows). If you would like to include the spaces that have workflows declared but that are disabled, then removed the last condition of the "WHERE".
SELECT
DISTINCT S.SPACEKEY,
S.SPACENAME
FROM
BANDANA as B,
SPACES as S
WHERE
B.BANDANAKEY LIKE '%com.comalatech.workflow.production.template%'
AND B.BANDANACONTEXT = S.SPACEKEY
AND B.BANDANAVALUE NOT LIKE '%disabled=true%';
If you have future questions about Comala Document Management you can contact our friendly support team at https://support.comalatech.com any time.
Regards,
Pablo Gallego
Software Engineer at Comalatech
This is great. Thank you for the quik reply!
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.
if i need global workflow which spaces are using .please provide me sql
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.