Viewing 15 posts - 11,716 through 11,730 (of 13,876 total)
And what is your question?
December 10, 2010 at 3:12 am
Your initial post referred to 'blank' data.
Now you are asking why the text value '199-B' won't post to an integer field. I can't understand why you would ever expect that...
December 8, 2010 at 12:00 am
It's a valid question, but here's mine in response:
If you want to get somewhere fast, would you try to fix your injured camel when you've been offered a racehorse as...
December 7, 2010 at 8:04 am
You should really test it - wouldn't take long. Don't use your project to test - set up something manageable and quick.
But if by 'blank' you mean an empty string,...
December 7, 2010 at 12:20 am
So satisfying when you solve your own problems & no one else has a clue 🙂
December 6, 2010 at 8:54 am
melissa.jones (12/3/2010)
Mukti (6/18/2009)
December 4, 2010 at 1:36 am
Whenever I do date stuff like that, I tend to put it into universal format first (YYYY-MM-DD HH:MM:SS) and then just map it directly to the destination column - no...
December 3, 2010 at 10:30 am
Try using double quotes " instead of single in your expression.
December 3, 2010 at 9:56 am
Yes exactly. Once you have that, you're in business.
Even if you just use Row_Number() to generate one on the fly ... (if you're not too fussy about which rows end...
December 3, 2010 at 4:37 am
If you have two data sets
Set 1
1, 2
3, 4
Set 2
a, b
c, d
and you want to combine them to give something like
1, 2, a, b
3, 4, c, d
you need to...
December 3, 2010 at 4:06 am
Or ...
Instead of using the tables as your sources, use a query which includes the join. Then your data source is ready to go - this will be faster than...
December 3, 2010 at 3:19 am
Feed the two sources into a Merge Join transformation and from there map to your destination table (I'm assuming that the two source tables can be joined, of course).
December 3, 2010 at 3:17 am
Hi Steve
It's easy - take a look here.
I am happy to have been of help - although, with hindsight, I feel that we should have got to this sooner 🙂
Phil
December 3, 2010 at 2:22 am
Sounds like you're well on the way to creating a script component to do the job.
I will write down my thoughts, just in case they include anything you haven't considered.
The...
December 3, 2010 at 1:19 am
Craig Farrell (12/2/2010)
LutzM (12/2/2010)
You'd basically use a script component after your data...
December 2, 2010 at 12:33 pm
Viewing 15 posts - 11,716 through 11,730 (of 13,876 total)