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.
Hi
Is there anyway to search through all trash spaces?
Any idea?
Thanks,
Hi @kohopir975
An idea, since it is Confluence on Server, I would try to search in the database. Here is a link of how it could be achieve, please note that the SQL would vary so you can get your desired search:
Hopefully this idea gives you a hint.
Regards,
David
Hi @kohopir975
You can make a list of all pages in trash by SQL query:
select dateadd(s, convert(bigint,EVENT_AT)/1000,'1970-01-01') as 'Date', cnt.TITLE, usrm.username from dbo.AO_7B47A5_EVENT eve
join CONTENT cnt on cnt.CONTENTID=eve.CONTENT_ID
join user_mapping usrm on usrm.user_key=eve.USER_KEY
where eve.NAME='page_trashed';
Regards,
Seba
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.