Viewing 15 posts - 1 through 15 (of 853 total)
Hello
need to fix data for Persan name can you please help
November 9, 2018 at 11:30 am
WHEN a.[Person Email] IS NULL AND a.[person name] IS NOT null THEN
( SELECT TOP 1 Email COLLATE DATABASE_DEFAULT
FROM [dbo].[vw_PersonEmail]
...
November 1, 2018 at 9:36 am
if do select top 1, I get 1st email for person correct and the rest get email of that person, I need people have their emails mapped correctly.
November 1, 2018 at 9:18 am
Thank you,it works only if I run it outside of my statement,but if I run the full code
Subquery returned more than 1 value. This is not permitted when the...
November 1, 2018 at 8:49 am
Thank you,it is working
also trying to this select statement to email add this code:
WHEN a. [Person Email] is NULL
THEN (SELECT Email FROM [dbo].[PersonEmail]...
October 31, 2018 at 10:23 am
October 30, 2018 at 11:33 am
October 30, 2018 at 10:45 am
October 30, 2018 at 8:28 am
I found problem in email it goes like that:'%@rs.org
%'
eamplee:
( N'ba@rs.org
julia.leis@rs.org' )
think split needs to be used by not sure i
how can this...
October 30, 2018 at 7:09 am
Hello
Thank you so much:
so it works for this:
"bassam.nasser@crs.org julia.leis@crs.org"
t doesn't work for this:
bass.nasr@rs.org julia.liii@rs.org
Can you please help?
October 29, 2018 at 11:52 am
it is not working for me and I am asking for help
(LEFT([Person Email],(CHARINDEX(' ',[Person Email])-1),REPLACE([Person Name] , '"', ''))
October 25, 2018 at 11:33 am
there is also there at the beginning and end email ", after this code they were removed but how to remove on left side.
Thank you
October 25, 2018 at 10:57 am
Viewing 15 posts - 1 through 15 (of 853 total)