Hey everybody,
we have MSSQL and I want to find duplicate E-Mail Adresses. Atlassian offers only this POSTGRESQL Query:
--DUPLICATED EMAIL ADDRESSES - TESTED ON POSTGRESQL
select lower_email_address, count(lower_email_address), array_agg(user_name) as "Users with Dupe E-Mail"
from cwd_user group by lower_email_address having count(lower_email_address) > 1;
-> As array_agg is not a valid function on MSSQL, I want to modify the query to run - but it does not work. Do you have an idea how to solve this?
Thanks a lot!
Hannes
HI @Hannes ,
Perhaps this link might leads you to the right direction:
https://jira.atlassian.com/browse/JRASERVER-9182
-Ben
Right, though that workaround is for JIRA, it should yield the result for confluence as well because of its similar schema.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.