Viewing 15 posts - 10,141 through 10,155 (of 13,879 total)
kingdonshel (2/13/2013)
I tried it but it did not work
You will find that people will respond better if you post error messages and what you have tried to resolve them.
Very...
February 13, 2013 at 8:44 am
This is a cross-post - no more answers here please - use this thread instead.
February 13, 2013 at 6:56 am
mister.magoo (2/12/2013)
dubem1-878067 (2/12/2013)
I need to extract records between two dates
this code will do the job
where...
February 13, 2013 at 2:04 am
I can't really see what this has to do with SSIS, but here's one way.
declare @MyDate datetime
set @MyDate = '2012-12-29'
select DATEADD(dd, - (DAY(DATEADD(mm, 1, @MyDate )) - 1), DATEADD(mm, 1,...
February 12, 2013 at 12:41 pm
athi_ssn (2/12/2013)
February 12, 2013 at 7:41 am
Good luck with this. Not the easiest project for starting off your SSIS journey.
February 12, 2013 at 7:13 am
kingdonshel (2/12/2013)
Thanks PMWar I will try this, if you have this solution in C# I wouldn't mind giving that a try as well.
Whereas I'd like to see the one written...
February 12, 2013 at 7:10 am
opc.three (2/11/2013)
1. Run an Execute SQL Task to retrieve the max ID from the destination table and store the result in a variable.
2. Run...
February 12, 2013 at 2:07 am
aaron.reese (2/11/2013)
Thanks once again for coming to my rescue.
Yes, there will only be one batch per package execution
create table dbo.batchHeader(batchID int identity(1,1), description varchar(200),filename varchar(200))
create table dbo.batchLine (batchID int, partno...
February 11, 2013 at 3:29 pm
dwilliscp (2/11/2013)
February 11, 2013 at 3:19 pm
dwilliscp (2/11/2013)
February 11, 2013 at 2:08 pm
I agree with the previous comment. Even if performance is degraded slightly (and it's not clear that it will be), the fact that you can maintain a separate dev environment...
February 11, 2013 at 2:01 pm
Can you describe in a bit more detail how the batch Id is generated/retrieved?
Is there only ever one batch Id per package execution?
February 11, 2013 at 1:59 pm
Is this just a rant (it's a good one!), or are you hoping for comments?
February 11, 2013 at 12:57 am
A simple source-target dataflow will do the job - but you'll only be able to run it once. If you want to be able to run it multiple times, you...
February 10, 2013 at 7:18 am
Viewing 15 posts - 10,141 through 10,155 (of 13,879 total)