Viewing 6 posts - 1 through 6 (of 6 total)
Where and how do you do step 2
March 28, 2022 at 10:33 pm
I'm not sure that helps me.
If you notice in my example the 3rd column header has double quotes but the data for column 3 does not.
March 22, 2022 at 9:55 pm
June 2, 2013 at 1:12 am
replace
'%@name%'
with
'%' + @name + '%'
May 19, 2013 at 4:10 pm
Replace
LEFT JOIN (
SELECT
msp_flag,
bc_code
...
May 18, 2013 at 11:37 pm
DECLARE @Blocksize AS BIGINT = 5000,
@pagenum AS BIGINT = 0,
@ROWCNT AS BIGINT = 1;
While @ROWCNT > 0
BEGIN
Update ceb set CEB.new_WCDSCreatedOn = D.CreateDate
from contactextensionbase ceb join
(SELECT IndividualID,CreateDate
from #tmpIndividualCreateDates
order by...
May 16, 2013 at 11:34 pm
Viewing 6 posts - 1 through 6 (of 6 total)