Viewing 15 posts - 2,986 through 3,000 (of 13,871 total)
Are they all going into the same target table? If so, you'll need to be careful with parallelism, because of the likelihood of blocking occurring during INSERTs.
I'd use SSIS for...
January 28, 2020 at 1:52 pm
Thanks to those who responded.
It's looking as though this will be simpler for me than expected, in that I will need only historical rates – and these I can load...
January 28, 2020 at 1:44 pm
How are you consuming/viewing the results of the query in SSIS?
January 24, 2020 at 9:03 pm
Frederico is spot on.
In addition, note that SSDT is a client tool and should, therefore, not be installed on either of your servers.
January 24, 2020 at 6:53 pm
When you created the Project in VS, what sort of Project did you create? Was it like this:

January 24, 2020 at 4:43 pm
limitations of using developer edition versus full blow standard?
As John suggested, quite the opposite. Developer has more features than Standard.
January 24, 2020 at 4:40 pm
No need for a cte:
update h
set h.Person = t.Person_To,
h.Pctg = t.Pctg_New
from #holders...
January 24, 2020 at 4:38 pm
Please bear with me. I've never had to create a project in the 23 years I've worked with SSIS. I created a SQL Server project and add my .dtsx...
January 24, 2020 at 4:06 pm
Hi Phil, thanks for replying. This is exactly what I thought. This is all at a POC level so far.
I originally had my dimensional loads running in sequence but...
January 24, 2020 at 3:38 pm
Yuck! I started on this before spotting the need for some sort of recursion, to make the Person A4 bit work.
If I had more time, I think that I would...
January 24, 2020 at 2:32 pm
Thanks Phil Parkin, it works fine with variable of 'Object' data type.
I must say, error text is not intuitive at all.
I'm with you on error message clarity. On Azure,...
January 24, 2020 at 2:20 pm
You need to use a data type of Object to handle resultsets.
January 24, 2020 at 1:58 pm
Sounds like you need to put your data flow task inside a Foreach container.
Your Foreach container needs to iterate around the various GLExtractId values.
To make that happen, use an ExecuteSQL...
January 24, 2020 at 1:55 pm
You have two (or more) child packages running in parallel.
Your requirement is that if one of the child packages fails, processing stops immediately ... is that correct?
If so, I don't...
January 24, 2020 at 1:46 pm
Viewing 15 posts - 2,986 through 3,000 (of 13,871 total)