The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
How do I get list of Bamboo projects and plans with their users using MS SQL query
From your question is not clear what do you mean by "their users", but I will consider you are talking about what users or groups have permissions on those plan/projects.
This query will give you the build projects/plans:
SELECT
P.PROJECT_ID,
P.PROJECT_KEY,
P.TITLE,
B.BUILD_ID,
B.FULL_KEY,
B.TITLE
FROM
PROJECT P
JOIN
BUILD B
ON P.PROJECT_ID=B.PROJECT_ID
WHERE
BUILD_TYPE='CHAIN' ORDER BY FULL_KEY
This one will give you the deployment projects/environments:
SELECT
DP.DEPLOYMENT_PROJECT_ID,
DP.NAME,
DE.ENVIRONMENT_ID,
DE.NAME,
DP.PLAN_KEY
FROM
DEPLOYMENT_PROJECT DP
JOIN
DEPLOYMENT_ENVIRONMENT DE
ON DP.DEPLOYMENT_PROJECT_ID=DE.PACKAGE_DEFINITION_ID
The users and groups with permissions for them you can get from this page:
I hope that will allow you to retrieve the information you need from the Bamboo DB.
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.
Hi, If you are running self-managed environments and looking to adopt modern infrastructure, Bamboo Data Center can now be deployed in a Kubernetes cluster. By leveraging Kubernetes, you can easily...
Connect with like-minded Atlassian users at free events near you!
Find an eventConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no Community Events near you at the moment.
Host an eventYou're one step closer to meeting fellow Atlassian users at your local event. Learn more about Community Events
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.