Viewing 15 posts - 17,881 through 17,895 (of 22,202 total)
Jeff Moden (3/27/2009)
How about the uplifting and ever popular [font="Arial Black"]"RBAR - Death by SQL" [/font] 😀
I don't know. That sounds... almost... on topic. :hehe:
March 27, 2009 at 6:54 pm
Kendal Van Dyke (3/27/2009)
March 27, 2009 at 6:38 pm
You can create clustered and nonclustered indexes on temp tables.
Syntax is like this:
CREATE INDEX myindexname ON schemaname.tablename(col1,col2)
INCLUDE (col3)
WITH FILLFACTOR=80
ON Primary
That creates an index consisting of two columns which includes...
March 27, 2009 at 1:30 pm
NO!
Never run the Profiler gui against Production.
It uses a completely different mechanism for gathering the data to present from what the server-side trace uses. This mechanism can, and will,...
March 27, 2009 at 1:08 pm
Roy Ernest (3/27/2009)
Grant Fritchey (3/27/2009)
You can get them from the client.
On which client? Normal Web App that uses the Sproc?
I meant the data access layer, regardless of how it's displayed....
March 27, 2009 at 9:41 am
suhasini.m (3/27/2009)
I am running both the quries at the same time and also doing DBCC DROPCLEANBUFFER and DBCC CLEARPROCCACHE before for both the queries.
If this is...
March 27, 2009 at 9:40 am
It really depends on what you need to do. Let's assume a row into each table. You create a proc with variables for each of the columns, except the two...
March 27, 2009 at 9:35 am
CTRL+2 in a query runs sp_who by default. You can change that.
It sounds like you were hitting CTRL+2 to open a table? I've never seen that done before. If you...
March 27, 2009 at 9:29 am
They add to the overhead. I use them occasionally when debugging, but always comment them out.
However, I've never tested them to see what the exact cost is.
You can get...
March 27, 2009 at 9:22 am
Jeff should do it.
"Pork Chops for the DBA" by Jeff Moden
"SQL Server Performance Tuning by Pork Choping Deveopers" by Jeff Moden
"Better Performance by True Set Based Operations and Pork Chops"...
March 27, 2009 at 8:43 am
suhasini.m (3/27/2009)
SELECT * FROM Table1
JOIN Table2
ON Table1.Column1 = Table2.Column1
SELECT * FROM Table1
JOIN Table2
ON Table1.Column1 = Table2.Column1
AND Table1.Column2 = XXX
Both these query returns same number of results say...
March 27, 2009 at 8:38 am
Just a side note, it's almost always a last resort to start applying blocking through hints. SQL Server is generally much more capable at handling it's locking and blocking processes...
March 27, 2009 at 6:23 am
mazzz (3/27/2009)
So the order in which I'd reorg indexes would not be important then, I expect?
The tables are reasonably small (generally under 20000 rows), so I'm going to monitor...
March 27, 2009 at 6:18 am
I'd dig into the performance monitor counters, cpu, I/O, etc. Especially focus on the waits and queues to see what things are slowing down for on the server. Here's an...
March 27, 2009 at 6:15 am
Viewing 15 posts - 17,881 through 17,895 (of 22,202 total)