Viewing 15 posts - 11,026 through 11,040 (of 11,678 total)
1. Use a derived column with the following expression:
ISNULL(myCol) ? "Dummy value" : myCol
2. But how can you put two columns into one column? Do you have to perform...
October 12, 2010 at 7:12 am
There are tons of sophisticated sorting algorithms out there. Sort your text file before you load it into SSIS. Use whatever programming language you feel comfortable in (or whatever language...
October 12, 2010 at 6:29 am
Look at this, I've done all the hard work for you and googled with the first half of your topic title.
This was the first result (at my local google website):
http://forums.bitwiseglobal.com/Forums/Thread.aspx?pageid=0&mid=4&ItemID=43&thread=150&pagenumber=1
I'm...
October 12, 2010 at 6:17 am
You can clean up your source first before you try to load your destination table. (if possible)
Are those real duplicates (meaning, every column is exactly the same) or are just...
October 12, 2010 at 3:34 am
In order to help people help you, you'll want to ask your question more better. You can check out the link in my sig to a detailed article on how...
October 12, 2010 at 3:28 am
Have you also changed your configuration file? If not, the configuration file will try reset the values of your connection manager.
October 12, 2010 at 3:10 am
Although it was a very tricky question (misleading header and code), I did find it useful to learn something about the delimiters. I also think it is worth 2 points...
October 12, 2010 at 1:59 am
Raunak Jhawar (10/11/2010)
Nice...still wondering which is better join or pivot?:-D
The join, as the pivot transformation is semi-blocking 🙂
October 11, 2010 at 7:50 am
Phil Parkin (10/10/2010)
Sorry, but I am not prepared to help you get a job based on lies about your experience.
I must say, I admire your patience 😀
(5 replies and still...
October 11, 2010 at 7:47 am
You can use a conditional split to filter out rows with a length > x.
For the "good" records, you can add a data conversion component, to specifically set the lenght...
October 11, 2010 at 7:39 am
The pure T-SQL solution:
SELECT
customer_key= c.customer_key
,home_phone= h.phone_number
,business_phone= b.phone_number
,mobile_phone= m.phone_number
FROMcustomer c
LEFT OUTER JOIN
phoneh
ONc.customer_key= h.customer_key
ANDh.phone_type= 'Home'
LEFT OUTER JOIN
phoneb
ONc.customer_key= b.customer_key
ANDb.phone_type= 'Business'
LEFT OUTER JOIN
phonem
ONc.customer_key= m.customer_key
ANDm.phone_type= 'Mobile'
Beware, as this solution introduces NULL values for...
October 11, 2010 at 7:34 am
paul.goldstraw (10/11/2010)
October 11, 2010 at 3:03 am
Alvin Ramard (10/8/2010)
October 9, 2010 at 3:22 am
Phil Parkin (10/8/2010)
That won't work - it's the destination that's changing, not the source.
Hmmm. Reading and Friday afternoon, things that don't mix too well.
All right. Read the damn thing into...
October 8, 2010 at 8:58 am
Phil Parkin (10/8/2010)
da-zero (10/8/2010)
October 8, 2010 at 8:55 am
Viewing 15 posts - 11,026 through 11,040 (of 11,678 total)