Viewing 15 posts - 61 through 75 (of 285 total)
Would you mind posting the code. That would help us to look at further.
Whats the variable datatype?
October 18, 2011 at 10:22 pm
dfine (10/18/2011)
however, if you see the second query's excution plan it uses the non clustered...
October 18, 2011 at 6:48 am
There are no indexes satisfying your second query.
So the SMART query optimizer uses the productid index as long as which seems to be a better possible index key and...
October 18, 2011 at 4:15 am
Please configure the perfmon counters for the latency and see the result.
October 18, 2011 at 12:25 am
Aspet Golestanian Namagerdi (10/17/2011)
Is Batch Requests/Sec another counter in Performance monitor?where can I get that?
Object: SQLServer:SQL Statistics
Counter:...
October 17, 2011 at 11:43 pm
What number in Page split/Sec in Performance monitor should we consider as an existence of Page Split.
Thanks
Page split will cause performance issues for both insert and select. SQL has to...
October 17, 2011 at 10:57 pm
Quite Curious....What do you mean by "shortorder"???
October 14, 2011 at 1:19 am
Try this....
select type,(sum(single_pages_kb) + sum(multi_pages_kb) ) * 8 / (1024.0 * 1024.0) as plan_cache_in_GB
from sys.dm_os_memory_cache_counters
Group by type
Order by plan_cache_in_GB desc
October 13, 2011 at 12:51 am
To me, Nothing is free. Do only for required tables...
October 12, 2011 at 11:12 pm
You may have to follow certain pattern to help you better!!!
Otherwise people wont take effort to create tables and data for you which would be areal example.
Answering your question,
you have...
October 10, 2011 at 6:28 am
Please have a look at this blog too...
http://sqlwithmanoj.wordpress.com/2011/03/02/clustered-vs-nonclustered-indexes-and-data-sorting/
October 10, 2011 at 5:26 am
If the clustered index is not created with the UNIQUE property, the Database Engine automatically adds a 4-byte uniqueifier column to the table. When it is required, the Database Engine...
October 10, 2011 at 5:19 am
There is no gurantee for this...
October 10, 2011 at 5:07 am
I guess, you can achieve by the below way,
SELECT
CASE IsNull(COL1,'') WHEN '' THEN 'Is Null'
WHEN '0' THEN 'Is Zero'
WHEN '1' THEN 'Is One'
WHEN '2'...
October 10, 2011 at 12:31 am
Split the query into multiple queries to remove the LEFT join. That would do the trick here.
September 30, 2011 at 6:52 am
Viewing 15 posts - 61 through 75 (of 285 total)