Viewing 15 posts - 106 through 120 (of 179 total)
FROM TableA as a
JOIN TableB as b
ON a.Service_Part = b.Service_Part
JOIN TableC as c
ON b.Production_Part = c.Production_Part
I sure hope TableC...
January 5, 2018 at 5:25 am
December 29, 2017 at 5:11 am
^
But if you sort by locale DESCENDING as in the possible answers, you will get the correct answer if you supply all the columns for George Bailey's record. ...
December 27, 2017 at 8:02 am
December 27, 2017 at 5:14 am
How about concatenating the address pieces, and then comparing the two resulting strings?
Remember to handle any pieces of the address that are null. And you might consider replacing...
December 21, 2017 at 5:15 am
Are you using SSIS?
If so, you can set up a variable to hold the last SEQNum found on the SQL side, say we call it LastNum. Then set up...
December 11, 2017 at 5:20 am
You might also want to consider what happens if your nvarchar(100) column contains more than 16 digits.
November 28, 2017 at 5:44 am
You said you have 2 columns which combine to make a primary key.
And from the newly staged data, any (or none) of 80 columns could change*. (The...
November 20, 2017 at 5:34 am
Of course the absolute easiest way of doing it isWHERE YEAR([date]) = 2015
But that's not sargable. It doesn't matter if you're looking at only a few...
November 14, 2017 at 5:35 am
What do you want to fail? You've already staged the data with a duplicate. What happens to that staged data?
If all you want is to stop further processing,...
November 13, 2017 at 5:16 am
October 27, 2017 at 5:51 am
Viewing 15 posts - 106 through 120 (of 179 total)