Viewing 15 posts - 6,061 through 6,075 (of 11,678 total)
You can have the stored procedure in the OLE DB source in the dataflow. You can map parameters into the stored procedure. Be aware that stored procedures can behave oddly...
December 17, 2012 at 3:56 am
Jason-299789 (12/14/2012)
Also the SCD will not recognise Primary keys on the desitination table as Business Keys as they are not guaranteed to be identical,...
December 14, 2012 at 5:19 am
So you have a transaction around the dataflow, data is transferred inside the dataflow, the dataflow errors out and data is still inserted?
That's very strange. Also because the dataflow will...
December 14, 2012 at 5:16 am
Don't worry, we all had this happening to us once 😀
December 14, 2012 at 5:08 am
The two Execute SQL Task and the destination in the dataflow use the same connection manager right?
December 14, 2012 at 3:15 am
Are you sure the data is stored outside of SQL Server? This is the case with FileStream for varbinary(max), but I'm not sure it is for the image datatype.
December 14, 2012 at 3:13 am
Did you put the property RetainSameConnection to true on the connection manager?
December 14, 2012 at 2:05 am
Because it is not there?
(probably because the query optimizer thinks certain queries can benefit from the index)
December 14, 2012 at 2:03 am
Maybe SSIS hates being called recursively? 🙂
Why don't you build a recursive function right into the script task? Unzip the file, check for .csv and if there are no csv...
December 14, 2012 at 12:32 am
You can't. You'll need to do custom coding in .NET to achieve this, and it won't be easy. Search the net to found out if someone else has already coded...
December 14, 2012 at 12:28 am
SQL Server supports up to 2,147,483,647 bytes for image data.
It doesn't use 2,147,483,647 bytes for the pointer.
December 14, 2012 at 12:26 am
An alternative if you don't like coding:
put a data conversion task and convert the column to a numeric datatype.
Redirect the errors to another destination or throw them away (for example...
December 14, 2012 at 12:15 am
Great question to end the week. Had to do some research, but it was worth it.
December 14, 2012 at 12:09 am
chris corbin (12/13/2012)
FYI.. to everyone involved, the correct answer here is to write a C# app, or use...
December 13, 2012 at 11:49 pm
Viewing 15 posts - 6,061 through 6,075 (of 11,678 total)