It's not the same without you
Join the community to find out what other Atlassian users are discussing, debating and creating.
UPDATE CWD_USER
SET email_address = user_name || '@noemail.com',
lower_email_address = lower(user_name) || '@noemail.com',
updated_date = sysdate
WHERE email_address not like '%@currentdomainname.com'
We were getting ready to try editing the xml backup file (find/replace all) but my co-worker said you're method was even better. We'll try it out tomorrow. Thanks - we'll let you know if it worked.
In the test environment (Jira v5.2.10 + Oracle 11.2.0.3.0) we :
1. stopped Jira
2. did an direct SQL Update:
update cwd_user
set email_address = substr(email_address, 1, instr(email_address, '@')) || 'newmaildomain.xxx'
,lower_email_address = substr(lower_email_address, 1, instr(email_address, '@')) || 'newmaildomain.xxx'
where email_address like '%@oldmaildomain.xxx';
3. started Jira
The email address is correctly shown, even in the opened issues.
Question:
What was not working in your case?
This community is celebrating its one-year anniversary and Atlassian co-founder Mike Cannon-Brookes has all the feels.
Read moreHey Atlassian Community! Today we are launching a bunch of customer stories about the amazing work teams, like Dropbox and Twilio, are doing with Jira. You can check out the stories here. The thi...
Connect with like-minded Atlassian users at free events near you!
Find a groupConnect with like-minded Atlassian users at free events near you!
Unfortunately there are no AUG chapters near you at the moment.
Start an AUGYou're one step closer to meeting fellow Atlassian users at your local meet up. Learn more about AUGs
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.