Viewing 15 posts - 11,446 through 11,460 (of 11,676 total)
Microsoft itself dissuades the use of data sources between different enviroments:
http://msdn.microsoft.com/en-us/library/cc671619
(maybe the answer to your problem is mentioned somewhere in the article)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 5, 2010 at 2:34 am
You could try to refresh the metadata.
Instead of your old SQL statement, put
SELECT a = 1
This will wipe out your existing metadata. Then put pack your original SQL statement with...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 4, 2010 at 4:38 am
Phil Parkin (4/30/2010)
Hey, you're not that new! I told you how to add derived columns yesterday - see herePhil
That actually made me laugh outloud 😀
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 3, 2010 at 8:04 am
My first guess, after reading your chaos question two times (:-P), is that you are trying to convert a date to a string, and it is failing. That is, if...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 3, 2010 at 8:02 am
I think Method 1 only works if you can all your history from the source. If not, this method is flawed as you will lose some of your history each...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 3, 2010 at 7:59 am
This is a very, very, very common problem with SSIS and Excel. It shows up in hundreds of blog and forum posts.
Have you tried Google?
The issue is that Excel guesses...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 3, 2010 at 7:54 am
Great question. Learned two new things today:
* nullif
* how SQL converts an empty string to a numeric datatype.
Nice one!
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
May 3, 2010 at 7:31 am
mvelusamy (4/30/2010)
Advantages: It will hit the DB...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 30, 2010 at 5:29 am
Add a derived column after your flat file source.
Use the following expression:
REPLACE([Email_Address], " ", "" )
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 30, 2010 at 3:08 am
I think there are two options (since you just can't disable components in the data flow task):
* write a script component that functions as a RAW file source. This script...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 30, 2010 at 3:00 am
We have something like that in the company I work in. There is a competence manager, someone from HR, who follows you through your career. He/she talks with your clients,...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 30, 2010 at 2:05 am
Don't worry Gary, it's just Excel, the rest of SSIS works (practically) fine. 🙂
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 30, 2010 at 12:52 am
Phil Parkin (4/29/2010)
Or derive a string in the universal format YYYY-MM-DD hh:mm:ss and just pump that straight into your SQL date field.
I have to go with Phil here. Datetime conversions...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 29, 2010 at 12:09 pm
I'm not 100% sure, but I think that joining in the OLE DB source will be more performant than using the conditional split. The conditional split has to evaluate each...
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 29, 2010 at 7:39 am
marina.x.rotua (4/28/2010)
Need an answer? No, you need a question
My blog at https://sqlkover.com.
MCSE Business Intelligence - Microsoft Data Platform MVP
April 29, 2010 at 7:36 am
Viewing 15 posts - 11,446 through 11,460 (of 11,676 total)