Viewing 15 posts - 11,311 through 11,325 (of 11,678 total)
Although the answer is mentioned directly in the error message, you can also find it here:
http://www.sqlservercentral.com/Forums/Topic941566-148-1.aspx
June 23, 2010 at 5:54 am
Robert Biddle (6/22/2010)
My...
June 22, 2010 at 8:26 am
This is not the fault of SSIS. The completion precedence constraint checks the completion of the task (whether this is a SQL Server Agent task or another one). The task...
June 22, 2010 at 3:36 am
You just can't compare two values if there are possible null values. You can compare null with "unknown", so your expression will fail sometimes.
So, either clean-up your input with isnull,...
June 22, 2010 at 3:31 am
You should set-up a configuration file or config table for each environment.
Then point to this config file/table with an environment variable (this has its advantages and disadvantages, but I'm not...
June 22, 2010 at 3:28 am
I believe you forgot the table name in your query.
Personally, I think it is easier to store the SQL statement in a variable and then configure this variable with an...
June 22, 2010 at 3:26 am
You use these three things to configure a connection dynamically in your package.
June 21, 2010 at 7:15 am
Merge component: http://msdn.microsoft.com/en-us/library/ms141703.aspx
Merge Join component: http://msdn.microsoft.com/en-us/library/ms141775.aspx
I'm sure you can come up with an example yourself.
June 21, 2010 at 7:12 am
Computers are dumb things. They do only exactly what you tell them to do, and nothing more.
You gave an expression, so SSIS evaluated it and stored it in the config...
June 21, 2010 at 7:09 am
imani_technology (6/20/2010)
What are the advantages of using the database instead of the file system?
I can answer this question. The advantages are that you can use built-in features of...
June 21, 2010 at 7:04 am
You don't have to open a new integration services project.
The Import wizard makes a SSIS package for you. Find this package (the wizard asks you if you want to save...
June 21, 2010 at 12:20 am
Good question.
Lose one point but learn a useful fact. A good trade-off 😀
June 18, 2010 at 1:55 am
I couldn't agree more.
Sometimes the analyst gives me some unformatted SQL code generated by a Build Query editor in SSIS.
The first thing I do is format the whole thing. While...
June 18, 2010 at 1:49 am
Viewing 15 posts - 11,311 through 11,325 (of 11,678 total)