Viewing 15 posts - 11,446 through 11,460 (of 11,678 total)
Try placing brackets around the different logical parts of your OR statement.
Now you have:
WHERE something1 AND something2 ...
OR
somethinga AND somethingb ....
OR
...
Try the following:
WHERE (something1 AND something2 ...)
OR
(somethinga AND somethingb ....)
OR
May 5, 2010 at 5:50 am
only4mithunc (5/5/2010)
Friends...Its done, along with refreshing the OLEDB source , now I refreshed the Connection Manager, the it was reflecting.
SSIS and metadata refreshing :unsure:
I hope they do something about it...
May 5, 2010 at 2:37 am
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)
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...
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 😀
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...
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...
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...
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!
May 3, 2010 at 7:31 am
mvelusamy (4/30/2010)
Advantages: It will hit the DB...
April 30, 2010 at 5:29 am
Add a derived column after your flat file source.
Use the following expression:
REPLACE([Email_Address], " ", "" )
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...
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,...
April 30, 2010 at 2:05 am
Don't worry Gary, it's just Excel, the rest of SSIS works (practically) fine. 🙂
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...
April 29, 2010 at 12:09 pm
Viewing 15 posts - 11,446 through 11,460 (of 11,678 total)