Viewing 15 posts - 151 through 165 (of 758 total)
Just did some testing on this - It seems you can remove a single plan from the cache, if you know the plan handle.
DBCC FREEPROCCACHE (plan_handle)
June 18, 2013 at 5:49 am
If it's a stored procedure you can use sp_recompile proc_name.
I'm not sure about removing a single query from the plan cache. Perhaps you could put the query in the stored...
June 18, 2013 at 5:48 am
As far as I know - as of 2005 a service pack cannot be uninstalled - I might be wrong here.
If possible, backup the entire image of the server before...
June 18, 2013 at 5:31 am
GilaMonster (6/18/2013)
SQLSACT (6/18/2013)
As for restoring backwards (restoring a database from a newer version to an older one) is not supported. I think it is possible but not pretty.
It's not that...
June 18, 2013 at 5:29 am
Restoring a database from an older version to a newer version (as in your case) shouldn't be a problem. As you've said, you just need to change the compatibility level....
June 18, 2013 at 5:21 am
GilaMonster (6/14/2013)
SQLSACT (6/14/2013)
A bit off topic but I stay away from using BCHR as a performance metric - It's extremely unreliable.
It's not that it's unreliable, it's that it can...
June 14, 2013 at 6:31 am
If you have a query that takes 10 hours to execute, that doesn't necessarily mean that it's slow - It could be normal for your system.
There is no set...
June 14, 2013 at 6:25 am
Yes - More or less.
Have a look here, might help you
June 14, 2013 at 6:12 am
jitendra.padhiyar (6/14/2013)
I had SQL Server 2005 SP3 on my server and from yesterday I got an alert that "Buffer cache hit ratio is less than 10%" I monitored it...
June 14, 2013 at 6:09 am
xp_servicecontrol 'querystate', 'SQLSERVERAGENT'
June 14, 2013 at 6:04 am
I don't think there is a good or bad. It depends on your queries.
This is why creating benchmarks is so important. Then you have something to compare your profiler...
June 14, 2013 at 6:00 am
GilaMonster (6/13/2013)
June 13, 2013 at 6:27 am
basavarajyn (6/13/2013)
When I ran Database Engine Tuning Advisor, it suggests to create a non-clustered index on the column where a clustered index is already present.
Can somebody give me some...
June 13, 2013 at 6:15 am
Try this
SELECT top 20
SUBSTRING(t.text, ( s.statement_start_offset / 2 ) + 1,
( ( CASE statement_end_offset
WHEN -1 THEN DATALENGTH(t.text)
ELSE s.statement_end_offset
END - s.statement_start_offset ) / 2 ) + 1)
AS statement_text,
text,
objtype,
cacheobjtype,
usecounts,
last_execution_time,
total_worker_time,
total_worker_time / execution_count AS...
June 13, 2013 at 6:13 am
Viewing 15 posts - 151 through 165 (of 758 total)