Viewing 15 posts - 2,056 through 2,070 (of 2,645 total)
November 1, 2018 at 1:36 pm
It's not a good idea to pass or return unencrypted passwords from a database function. Someone might intercept the call and read the password. You should only pass, store and...
October 31, 2018 at 2:56 pm
SELECT [Person Email_old], T.CleanedPersonEmailold, LEFT(T.CleanedPersonEmailold,CHARINDEX(' ',T.CleanedPersonEmailold)-1) SingleEmail
FROM Person_oldemail
CROSS APPLY(VALUES (REPLACE(REPLACE(REPLACE([Person Email_old],CHAR(13),' '),CHAR(10),' '),'"','')+' ')) T(CleanedPersonEmailold)
October 30, 2018 at 10:52 am
October 30, 2018 at 10:13 am
October 25, 2018 at 5:11 am
October 24, 2018 at 4:23 pm
October 24, 2018 at 3:51 pm
Viewing 15 posts - 2,056 through 2,070 (of 2,645 total)