Viewing 15 posts - 7,051 through 7,065 (of 13,876 total)
DF1 starts, executes and finshes and then DF2 does the same. How you diagram that is up to you.
June 13, 2016 at 2:53 pm
mcfarlandparkway (6/13/2016)
There is precedence constraint between two data flow tasks.Once first data flow task is finished transferring data from source to target its coming to second data flow task.
OK. Then...
June 13, 2016 at 2:31 pm
If there are no precedence constraints between the two dataflow tasks on the control flow tab, they will execute in parallel. Does that answer your question?
June 13, 2016 at 2:24 pm
michael.french 172 (6/13/2016)
I totally agree with points 3 & 4. With points 1 & 5, they are crucial to handle the recursion efficiently as coded. As for point 2, since...
June 13, 2016 at 2:22 pm
Wow. Not sure about the error, but I have some quick comments about the proc:
1) If you create the index after the first insert rather than before, it is likely...
June 13, 2016 at 1:20 pm
FridayNightGiant (6/13/2016)
I don't know what you mean by alien in this context.
Looks like an alien server:

June 13, 2016 at 11:02 am
Does your proc start with
SET NOCOUNT ON;
? If not, please add it and try again.
June 13, 2016 at 10:57 am
...however SSIS cannot read column metadata from a stored procedure.
You can get around that. You need to specify WITH RESULT SETS in your OLEDB source query and all will...
June 13, 2016 at 9:39 am
GilaMonster (6/13/2016)
Y.B. (6/13/2016)
Also Phil is right...better to make use of a MERGE here anyway.
I disagree MERGE is NOT atomic (it should be, it isn't) and hence both it and the...
June 13, 2016 at 8:46 am
fabriziodb (6/13/2016)
kapil_kk (6/13/2016)
Hi,Why are you doing deleting and insertion on the same id value?
what you want to accomplish from that.
the goal is to update text valus if a record with...
June 13, 2016 at 7:30 am
Two procs trying to delete and insert the same @Id at the same time? Why would you expect anything other than a PK violation?
June 13, 2016 at 6:51 am
jellybean (6/13/2016)
Thanks for the advice. Forgive me but how do you create a different SQL instance lets call it "TestInstance"
Another instance = another install of SQL Server.
June 13, 2016 at 5:45 am
komal145 (6/10/2016)
thing is agebucket column has "(other)" as value and "65+" this is not working:(how to check if this values exists just palce this value in the column?
This is important...
June 10, 2016 at 12:54 pm
Brandie Tarvin (6/10/2016)
Ed Wagner (6/10/2016)
WayneS (6/10/2016)
Phil Parkin (6/8/2016)
IF COL_LENGTH('dbo.mytable', 'col1') IS NULL
BEGIN
...
June 10, 2016 at 12:23 pm
Viewing 15 posts - 7,051 through 7,065 (of 13,876 total)