Hi,
I need to do a immediate maintenance on our workflows. I need a SQL query to retrieve all the Transition Conditions for a given workflow, from the database.
Thanks In Advance!!!
You can get info about a workflow by this query
SELECT id, workflowname, creatorname, descriptor, islocked
FROM jiraworkflows;
but all info is saved in the descriptor field in xml format. You would need to parse the xml file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
I guess you should have a look at the jiraworkflows table in the DB.
There has been another question like this here: https://community.atlassian.com/t5/Jira-Core-questions/Which-table-in-database-saves-the-transitions-which-assign-an/qaq-p/391447
Cheers
Christian
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.