Viewing 15 posts - 12,601 through 12,615 (of 13,870 total)
OK, just tried this with my own system:
"select f1, f2 from account where accountid = '" + @[User::AccountID] + "'"
is the value of SqlStatementSource, under Expressions.
August 11, 2009 at 8:02 am
Did you try using the 'Expressions' property as I suggested? Otherwise your statement will not get evaluated ...
You will be able to paste your variable into your SQL statement using...
August 11, 2009 at 6:46 am
roundel1900 (8/11/2009)
August 11, 2009 at 6:20 am
Did not! 🙂 'This' is a hyperlink in my post. Happy hunting.
August 11, 2009 at 3:30 am
It is likely that you can use an Expression to set the SQLStatementSource property to get what you want, without the need for all the faffing around you mention in...
August 11, 2009 at 2:54 am
Not easy. You'll probably need to get hold of the Excel object model and manipulate the spreadsheet via a Script task before and after the updates to get anywhere with...
August 11, 2009 at 2:41 am
Appending rows is the default behaviour. Any other requirement (UPDATE or replace, for example) would require additional steps.
Unless you are prepared to take the time to provide a few more...
August 11, 2009 at 2:28 am
All you need to do is update the meta data for the source connection to include the extra columns - but you don't need to send them through the pipeline....
August 7, 2009 at 2:09 am
The reference to 'long' data made me wonder whether it is, for some reason, expecting a long integer rather than a string. But based on what you have written, this...
August 5, 2009 at 12:01 pm
Inelegant as it may seem, your fastest solution is to create 18 'hard-coded' data flows.
I know, I wouldn't like it either :w00t:
An alternative is to build the whole thing in...
August 5, 2009 at 6:38 am
I suggest that you read and follow this thread - it's relevant to what you are trying to achieve:
http://www.sqlservercentral.com/Forums/Topic764541-148-1.aspx
August 5, 2009 at 4:02 am
The TRUNCATE option will work, but do you really want to delete everything from the table every time before you perform the import? Or maybe you want to import 'new'...
August 5, 2009 at 3:35 am
If you check the meta data for the OLEDB source in your SSIS package, for both External data and Output data, what is the datatype of the column which is...
August 5, 2009 at 3:27 am
By 'fails', do you mean that zero records are retrieved?
There is probably a way of achieving this by using a conditional split based on record count (0 is one path,...
August 4, 2009 at 3:46 am
Viewing 15 posts - 12,601 through 12,615 (of 13,870 total)