Viewing 15 posts - 1 through 15 (of 18 total)
It's a bit more than just streaming into a database. There is some processing, ultimately using a Task Factory Upsert to update/insert. Along the way there are some transformations and,...
June 15, 2018 at 10:35 am
That's what I thought. Thanks for the sanity check!
April 12, 2018 at 6:31 am
I had tried that, but the server wasn't showing up. So I just typed it in and lo and behold, there's the package I'm looking for... Oy, what a dunce.
February 3, 2017 at 7:16 am
January 27, 2017 at 9:10 am
I added a where clause to filter out 'Work' and a case for ''. Seems to be working just fine.
USE [tempdb]
GO
IF OBJECT_ID(N'dbo.addresses') IS NOT NULL DROP TABLE dbo.addresses;
CREATE TABLE...
August 4, 2016 at 11:30 am
Sorry, just saw the posts with questions about the sort order.
We DO want the most recent of a given address type, i.e., the highest AddrID, which is what Lynn's code...
August 4, 2016 at 10:05 am
The "Work" option is not to be included in the data. They only want Billing, Mailing, Home, blank (because address type isn't required).
August 4, 2016 at 9:51 am
Viewing 15 posts - 1 through 15 (of 18 total)