Viewing 15 posts - 1 through 15 (of 24 total)
It does use lots of procedures but they all start with proc_
Most of the application is .Net code and compiled dll's that I don't see. Some of the profiler text...
January 9, 2014 at 2:11 pm
I tried usp_who5 It does gives me more information but not what I am looking for.
The applications login default database is correct and using SQL Profiler I can confirm that...
January 9, 2014 at 1:34 pm
Thank You so much for this article.
It indirectly solved a long standing performance problem I have with a third party application.
There are 2 queries with useless Where clauses with likes...
May 10, 2013 at 12:31 pm
In the Indexing best practices
Here is another avoid
Avoid using fields in indexes that are updated frequently.
Status fields are a prime example. Each time the field is updated the index has...
March 28, 2012 at 11:29 am
Ok I figgured this out myself.
I went with correct language and did a few replace() statements. so SINGLE_BLOB into an XML field.
I noticed all html formating had an extra &...
December 9, 2009 at 11:19 am
I was quite certain the issue had nothing to do with the network crash but it did happen during our analysis...
After the crash somehow we had lost the order by...
November 26, 2009 at 2:50 pm
How many duplicates do you have?
This might do it for you. set @rcnt toi the number of duplicates.
I know this is a cursor. But I do come from the oracle...
November 20, 2009 at 1:45 pm
I believe the primary key is redundant in those indexes.
If you were to join tables using this primary key with a where clause using the lastname I would expect the...
November 19, 2009 at 1:49 pm
The primary key field should never be used as the first field of another index.
For this index to be used you will have to supply the primary key field and...
November 19, 2009 at 8:18 am
If you do find good info in the XML dump please share it!
And my earlier post should have been 311 Million records were duplicated.
November 17, 2009 at 11:31 am
The first things I would look for is buffercache hit rates and physical I/O.
I all tables are being used and with a block size of 8k and 1 million tables...
November 17, 2009 at 9:09 am
Yes there is a top SQL screen.
You can view and sort by almost any parameter you wish. CPU time, Physical reads, Elapsed time, logical Reads etc.
When I am tunning I...
November 17, 2009 at 8:58 am
I am using Quest Spotlight for SQL Server.
I also use Quest Spotlight for Oracle.
I love the graphics I can quickly see green is good and the closer we get to...
November 17, 2009 at 8:34 am
I tend to come at this issue from a different angle.
I agree with the others on this post that "it depends".
But there are ways you can determine some of the...
November 11, 2009 at 11:42 am
Viewing 15 posts - 1 through 15 (of 24 total)