Viewing 7 posts - 1 through 7 (of 7 total)
Cool, thanks Wayne!
November 16, 2010 at 11:43 am
I was able to accomplish it by doing a view upon another view. Thanks for Wayne for the input! 🙂
CREATE VIEW map_people AS
SELECT [CLIENT_NUMBER]
,[CLIENT_SURNAME]
...
November 16, 2010 at 11:10 am
Thanks Wayne! I'll be trying it with those ingredients. I was already using MAX GROUP BY and Top 1, but not PARTITION BY
November 16, 2010 at 10:37 am
For anyone who may have encountered a similar task, I found a viable solution. Using the script transformation component. The following puts three rows (date, notes, and contact) on one...
October 25, 2010 at 1:10 pm
I've used XML auto for exporting data from tables and then importing them with a cursor. You think the for xml would work for 6 million records? Maybe you could...
October 18, 2010 at 11:16 am
Yeah that should work fine. But I would recommend passing in all the VALUES to be inserted as parameters
(CREATE PROCEDURE usp_insert_loanOfficer (@id int, @branch int, @variable, etc)
If you hard code...
October 7, 2010 at 12:04 pm
We're in the development stage testing on our local machines. We each have copies of the production databases on our local machines and thats what the packages run against.
October 7, 2010 at 11:31 am
Viewing 7 posts - 1 through 7 (of 7 total)