Viewing 15 posts - 1,996 through 2,010 (of 2,612 total)
Keep in mind that doing a replace in a join will cause a table scan.
April 3, 2008 at 10:25 am
There is a SQL command object for doing updates within your data flow.
One way of doing what you are talking about is to use a lookup component to determine if...
April 3, 2008 at 10:23 am
Without looking at this in a lot of detail, I would break it into two pieces if your application architecture allows it.
The CTE runs fast, so why not execute that...
April 3, 2008 at 6:38 am
I would use the NUMERIC data type and select a precision appropriate for your data. The FLOAT and REAL data types are approximate numerics and that may impact the...
April 3, 2008 at 6:22 am
Ok, I hate to pick like this, but I have to ask.
Are your servers moving around onto different domains so often that you need an automated process to keep track...
April 2, 2008 at 2:06 pm
No, it can be a basic account with access granted to the SSIS server, the file share, and give it an email account.
Ask your network administrator what permissions would be...
April 2, 2008 at 12:12 pm
What does your SQL Server need network access for? Why would all of your servers need to use the same account?
You probably want to use SQL Mail, that is...
April 2, 2008 at 10:10 am
I like the rule of only giving accounts the access rights they actually need. So, I never make a SQL service account a domain admin. I also tend...
April 2, 2008 at 9:44 am
Do you realize your statement is trying to update every record in GOLD_BROKER_OUTPUT to the same value?
If you do, the problem is in the GROUP BY in your subquery. ...
April 2, 2008 at 9:23 am
This would typically be caused by using a connection manager for managed code with an OLEDB component (or the other way around).
It is hard to do in most cases because...
April 2, 2008 at 9:15 am
Use a DataReader source.
April 2, 2008 at 8:39 am
Ok - one more post.
I didn't mean to post that you did not think SSIS was any good. I also did not mean to post that it is a...
April 2, 2008 at 7:34 am
Set the ValidateExternalMetaData property to False.
However, you are better off using a CAST or CONVERT in your SQL statement and changing the column to another data type.
April 2, 2008 at 7:20 am
These arguments always drive me crazy, so this will be my only post on the subject.
I have always bucketed people into "programmers" and "developers".
My idea of a programmer is someone...
April 2, 2008 at 7:16 am
You have mis-read a bit - I had some of these same concerns not long ago.
They have not included Analysis Services in their Data Warehousing bullet - it is in...
April 2, 2008 at 6:04 am
Viewing 15 posts - 1,996 through 2,010 (of 2,612 total)