You're on your way to the next level! Join the Kudos program to earn points and save your progress.
Level 1: Seed
25 / 150 points
Next: Root
1 badge earned
Challenges come and go, but your rewards stay with you. Do more to earn more!
What goes around comes around! Share the love by gifting kudos to your peers.
Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!
Join now to unlock these features and more
The Atlassian Community can help you and your team get more value out of Atlassian products and practices.
I have a user who wants to know all of the Bamboo plans where he has used his login credentials within the plan's repository configuration.
Where is this info stored in the DB? Or is there another way to answer his question?
Thanks.
That is indeed a good question!
The table you are looking for is VCS_LOCATION. This table has a column called XML_DEFINITION_DATA and guess what, it has XML data on it which is not that easy to parse.
The best way I could come with was through these two DB queries:
Get plans with this <NAME> in their config
SELECT
B.FULL_KEY AS PLAN_KEY,
B.TITLE AS PLAN_TITLE,
VL.PLUGIN_KEY AS REPOSITORY_TYPE
FROM
VCS_LOCATION AS VL
JOIN PLAN_VCS_LOCATION AS PVL ON PVL.VCS_LOCATION_ID = VL.VCS_LOCATION_ID
JOIN BUILD AS B ON PVL.PLAN_ID = B.BUILD_ID
JOIN BUILD_DEFINITION AS BD ON B.BUILD_ID = BD.BUILD_ID
WHERE
VL.MARKED_FOR_DELETION=FALSE
AND VL.IS_GLOBAL=FALSE
AND VL.XML_DEFINITION_DATA LIKE '%<NAME>%'
Get repositories with this <NAME> in their config
SELECT
VL.NAME,
VL.PLUGIN_KEY AS REPOSITORY_TYPE
FROM
VCS_LOCATION AS VL
WHERE
MARKED_FOR_DELETION=FALSE
AND IS_GLOBAL=TRUE
AND VL.XML_DEFINITION_DATA LIKE '%<NAME>%'
We also have this improvement request that covers this scenario. It will be great if you can vote on it. It will help us to set our priorities when going over the suggestions we have:
I hope those queries can help.
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.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.