Viewing 15 posts - 1 through 15 (of 196 total)
Wow. That is some good insight. Thanks.
December 22, 2011 at 12:07 pm
The data that i am dealing with is >500 Million rows for one table (source split as multiple files) x 20 tables. Which is why i was trying to avoid...
December 22, 2011 at 9:09 am
I will try that out today at my client visit. I was not aware of this runas capability. Thanks Brian.
December 1, 2011 at 8:16 am
Thanks everyone for the help.
September 23, 2011 at 2:04 pm
Sean Lange (9/23/2011)
September 23, 2011 at 1:27 pm
So, with my proposal of just a Person (PersonId) - Address (PK: AddressId, FK: PersonId), does anyone see any cons with this approach ? Other than the visual redundancy.
September 23, 2011 at 1:25 pm
Sean Lange (9/23/2011)
September 23, 2011 at 1:17 pm
I think there is something wrong with the way the connection string is initialized and used.
You may need to either specify the full connection string or use something like this:
DirectCast(Connections.AuthenCustomer.AcquireConnection(Nothing),...
August 29, 2011 at 10:04 am
Not sure if this helps, but in c# the way to get a string value from a reader is
myReader.GetValue(0).ToString();
and the SSIS script you have is in VB, so .....
August 29, 2011 at 9:43 am
Don't you need to convert the integer count to a string ? myRdr.Item(0).ToString() ??
August 29, 2011 at 9:21 am
Change the AlwaysUseDefaultCodePage to True in your source component properties of the data flow task.
August 29, 2011 at 9:04 am
There is one for unit testing of SSIS packages - SSISUnit (like nUnit or MBUnit). You can set up a test server and configure the environment and run the tests...
May 16, 2011 at 11:28 am
If you dont log to the log file, are you able to echo the output to the command prompt ?
May 12, 2011 at 9:36 am
I was trying perform a differential load from a DB2 to SQL Server. The DB2 tables have absolutely no way (no PK, no timestamp) of identifying uniquely a row. So...
May 5, 2011 at 11:09 am
Viewing 15 posts - 1 through 15 (of 196 total)