Viewing 15 posts - 48,376 through 48,390 (of 49,571 total)
Right, lots of querying, searching and reading later...
The Practical Troubleshooting Guide (edited by Ken Henderson) pointed me at the cache counters and cache entries DMVs. The top 3 cache stores,...
October 19, 2007 at 5:42 am
Thanks. Looking into the output of the DBCC.
Interesting thing checking perfmon. The private bytes for the SQL process is climbing constantly, as is the working set. However, target and...
October 19, 2007 at 3:47 am
Change it to VARCHAR(max) . That's the 2005 replacement to TEXT
October 19, 2007 at 2:08 am
Apoogies for the delay.
Give this a try
SELECT * FROM StockCount LEFT OUTER JOIN
( SELECT CountID FROM FunctionStock
WHERE @FunctionStartDate BETWEEN StartDate AND EndDate OR @FunctionEndDate BETWEEN StartDate AND EndDate...
October 19, 2007 at 1:44 am
It depends how expensive the query is before what kind of improvement you see. Generally I only tune queries that have high duration, reads or CPU. If the query is...
October 19, 2007 at 12:48 am
Very strange. I scripted a trace from profiler which does filter and it looks almost exact. The only difference is that the trace I scripted out is that...
October 19, 2007 at 12:43 am
Andy Warren (10/18/2007)
Grant, I disagree with you on the certification part. I think it would cost money, but it would be self supporting. Picture a...
October 18, 2007 at 10:56 am
Swartkruit (10/18/2007)
Hi All,As you can see I'm trying to filter on duration where duration > 1000
WHAT AM I DOING WRONG?
I don't know. What are you seeing that you don't think...
October 18, 2007 at 10:40 am
I've seen with a client that used jdbc. I haven't found an easy way of identifying the commands run. From what I have found, the sp_cursorprepexec has the statement in...
October 18, 2007 at 2:09 am
Please don't make multiple posts on the same topic. Most of us read all the forums
Refer: analysing Profiler trace
October 18, 2007 at 1:56 am
Analysing exec plans is a complex topic. I've started a series on reading exec plans on my blog, but is still early days.
As a high level overview, what you'll be...
October 18, 2007 at 1:22 am
Catcha (10/17/2007)
I have been told to use
[font="Courier New"]DBCC DROPCLEANBUFFERS
DBCC FREEPROCCACHE
SET STATISTICS IO on
SET STATISTICS TIME on[/font]
to compare the performance of query and compare the Logical Read and...
October 18, 2007 at 12:36 am
You say you've used profiler. Have you identified the queries with high CPU time? If not, analyse the trace (I'd suggest load it into a table and use queries) and...
October 17, 2007 at 10:23 am
Mark Chimes (10/16/2007)
The date range is derived from user input and is stored in the Order table, so while it does not appear in any of the above...
October 17, 2007 at 12:15 am
Could you possibly post the schema of those tables, some sample data and your desired output please? Without those we're kinda working blind.
October 16, 2007 at 12:12 am
Viewing 15 posts - 48,376 through 48,390 (of 49,571 total)