Viewing 15 posts - 12,556 through 12,570 (of 13,838 total)
If I told you that my car was "not working", would you be able to tell me how to fix it?
August 13, 2009 at 9:26 am
Use the Advanced Editor for your source data and check/change the datatypes of the fields there.
August 13, 2009 at 7:22 am
Does this happen in all circumstances (ie, new and existing packages, new and existing script tasks ...)?
August 13, 2009 at 6:59 am
Your source data is already varchar (maybe Varchar(8) would be better), so why not use DSTR and avoid any need for data conversions?
The Data Viewer results you mention are consistent...
August 13, 2009 at 6:18 am
Yuk, I don't like the sound of that. If you are bringing all of the details into a temp table first and then processing from there out to master/child tables,...
August 13, 2009 at 3:06 am
Don't know, but why don't you just give it a try and see what happens? It's not difficult to set up a test.
August 12, 2009 at 2:08 am
Or, if you can be bothered setting things up so that you have access to the Excel object model via script (a bit of a pain), you can get the...
August 12, 2009 at 1:54 am
roundel1900 (8/11/2009)
gah (8/11/2009)
In Control Flow create an "Execute SQL Task" ...In the task editor set the SQL Statement to TRUNCATE TABLE "yourtable"run this before your dataflow task
I don't...
August 11, 2009 at 11:51 am
Do I have to do everything? I said it was untested and expected that you could work it out ...
Turns out there is no LEFT function available, so you'll have...
August 11, 2009 at 10:34 am
Ah - you said you were having a problem stripping off leading zeros and that confused me, but now I understand.
So you need something like (completely untested)
LEFT('00000', 5 - LEN(Zip))...
August 11, 2009 at 10:00 am
OK, I think an easy way to do this is to put in a data conversion transformation and convert from your current string field to an integer - this will...
August 11, 2009 at 9:51 am
If you really appreciate problems, I have some really juicy ones for you :laugh:
Can you provide sample data - source and required output - please? I'm English & not really...
August 11, 2009 at 9:38 am
Can you throw away the old record, if a newer one exists, and just use the newer one for everything?
August 11, 2009 at 8:07 am
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
Viewing 15 posts - 12,556 through 12,570 (of 13,838 total)