The Atlassian Community Forums are currently in read-only mode. We will be relaunching on a new platform on September 22 (read more here). We apologize for the extended downtime. For concerns or questions, please email communitymanagers@atlassian.com. See you on the other side, on the new Atlassian Community Forums! :)

×

Forums

Articles
Create
cancel
Showing results for 
Search instead for 
Did you mean: 

SQL Query Search

NinjawithPyjamas
February 8, 2022

I need to search ALL projects for a particular strings (there are too many to use the GUI) - I have access to the backend SQL DB but i am struggling to find where the project descriptions and summaries are stored in the schema.

I am not looking for anything complicated, I just want to be able to search for these keywords and if found show me them

1 answer

Comments for this post are closed

Community moderators have prevented the ability to post new answers.

0 votes
Payne
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Champions.
February 8, 2022

Have you looked at the project table? Something like

select * from project where pname like '%text%' or description like '%text%'

That seems like too easy an answer, so perhaps what you're trying to do is more complex than this.