Viewing 15 posts - 2,011 through 2,025 (of 2,612 total)
So if you have not done much performance tuning, an interesting thing for you to do is look at the estimated or actual execution plans with the CASE statements and...
April 2, 2008 at 5:36 am
Without looking at the execution plan, it is hard to say, but I would guess that the query optimizer is unhappy with the case statements and you are getting table...
April 1, 2008 at 1:40 pm
It is indicating a LEFT OUTER JOIN
April 1, 2008 at 12:14 pm
The ODBC driver you are using looks like it is producing a bad data set.
See if there is a better driver to use.
Since it is reporting an XML parsing error,...
April 1, 2008 at 11:11 am
I would start with just turning on the default memory limits in the lookup component.
April 1, 2008 at 8:34 am
The fact that you are joining your two tables by fields wrapped in functions:
LTRIM(RTRIM(ACC.ACC_NO))= LTRIM(RTRIM(SAC.ACCOUNT))
forces a table scan when your query runs.
The engine must evaluate the function on every row...
April 1, 2008 at 8:30 am
I am going to ignore your cursor issue and just point out a couple of other items related to your script.
Rather than using sysobjects, the information_schema.tables view will help avoid...
April 1, 2008 at 8:23 am
There are a couple of reasons to put indexes on another disk array.
Most likely, they wanted another set of read and write heads for the index searches. This can...
April 1, 2008 at 8:15 am
Use the "DelayValidation" property on the package.
April 1, 2008 at 8:11 am
Typically, I would care about two things, the time it takes for the entire task to complete (pre-execute caching and actual execution) and the amount of system resources needed to...
April 1, 2008 at 7:50 am
There is not really a defined limit, but memory may be a problem with 20 million rows being cached in a lookup. You need to performance test it to...
March 31, 2008 at 10:57 am
Empty string resolves to zero when converted to FLOAT or INT. Try this:
SELECT CONVERT(FLOAT,'') AS EmptyFloat, CONVERT(INT,'') AS EmptyInt
This is by design - I cannot remember why.
I'm sure someone...
March 31, 2008 at 9:15 am
If you are spending the money and doing it correctly, your company will be purchasing VMWare licenses and using a version of VMWare that directly virtualizes rather than running over...
March 31, 2008 at 9:12 am
Yes, Reporting Services will output to a Word document, Rich Text, pdf, and a couple of other formats.
It can be tricky to make a really complicated Word document with it,...
March 31, 2008 at 9:02 am
There is a bug relating to this situation. Look for the hotfix on the MSDN website.
March 31, 2008 at 7:34 am
Viewing 15 posts - 2,011 through 2,025 (of 2,612 total)