Viewing 15 posts - 196 through 210 (of 7,428 total)
I would also make sure to perform a backup before you make the change. The script is going to rename the existing table, create the new table strcuture, load the...
December 10, 2007 at 7:46 am
neil (12/6/2007)
I tried running your modified version of the code, but the query did not run any faster unfortunately.
I also tried deleting the index on BIC/FZFIGL_C02...
December 6, 2007 at 7:26 pm
Michal Mokros (12/6/2007)
And what about replacing IN by CTE or temporary table?
Generally the query engine on short lists like this can do constant scans faster than temp table. In addition,...
December 6, 2007 at 6:21 am
Looking at it things look good as all the index lookups are seeks. However, I would still review and try all of my recommendations
1) Try my altered query and...
December 5, 2007 at 9:31 am
Halim Dahlan (12/5/2007)
I'm new to ASP.NET and ADO.NET and was just trying out SqlParameter. How do I use SqlParameter to get a return code along with other parameters (input). I...
December 5, 2007 at 8:10 am
ThomasLL (12/4/2007)
What is the difference between Auto_Fix and Update_One?ThomasLL
AUTO_FIX matches based on the user alias in the DB to a login account.
UPDATE_ONE allows you to specify the alias mapping to...
December 5, 2007 at 7:35 am
With regards to the question I view it this way.
Anyone can learn to program and can call themselves a programmer once they learn the basics.
What seperates them from the good...
December 4, 2007 at 12:23 pm
Also it is common to see DISTINCT replaced by GROUP BY becuase of the way each is handled GROUP BY generally will perform faster. As well, you should always use...
December 4, 2007 at 11:18 am
neil (12/4/2007)
Here is the execution plan I saved as a .sqlplan file:
Sorry I don't see it.
December 4, 2007 at 11:13 am
I will add that unless you have a significant amount of test data you may not be able to tell a difference becuae of the way data can be in...
December 4, 2007 at 11:12 am
I may just be misunderstanding you, do you mean SQL 2000 Enterprise Manager? If so then no you cannot connect.
If you mean you are running a query using OPENROWSET...
December 4, 2007 at 11:06 am
BTW another thought, is this true
[S2].[FISCYEAR] = N'2007'
Is FISCYEAR really an NVARCHAR column if not but is a VARCHAR do like so
[S2].[FISCYEAR] = '2007'
but if it is numeric do like...
December 4, 2007 at 11:04 am
Matt Miller (12/4/2007)
December 4, 2007 at 11:01 am
One note
mdp.[/BIC/FZFIGL_C02] Clustered index on KEY_ZFIGL_C02P
nonclustered nonunique index on KEY_ZFIGL_C02T
nonclustered nonunique index on KEY_ZFIGL_C02U
nonclustered nonunique index on KEY_ZFIGL_C021
nonclustered nonunique index on KEY_ZFIGL_C022
nonclustered nonunique index on KEY_ZFIGL_C023
nonclustered nonunique index on KEY_ZFIGL_C024
nonclustered...
December 4, 2007 at 10:54 am
This may or may not resolve the data a little faster but helps me a little bit if you can get the text version of the execution plan and post...
December 4, 2007 at 10:42 am
Viewing 15 posts - 196 through 210 (of 7,428 total)