Viewing 15 posts - 1 through 15 (of 34 total)
Hey There!
Thanks for posting your findings;
Let's gather some more info so we can help figure out why it didn't send the email.
Then, execute the following statement in the msdb database...
September 22, 2014 at 1:39 pm
By all means, please do. That's what this forum is for.
🙂
September 12, 2014 at 7:09 am
Thanks for the comment. I am yet to update the script or create a new method using extended events.
Once i do, i will share it as well.
If you do find...
September 11, 2014 at 11:57 am
Yes it is. You can put it in a job that runs periodically and populates a table which you can use for analysis.
July 9, 2014 at 10:59 am
AvgCPUTime = 136722 -- Mathematical average cpu time (in miliseconds) it took per query execution.
execution_count = 25, -- Total count of executions of the query.
I bet when you look at...
June 26, 2014 at 8:48 am
Thanks for sharing your findings. The code was written to work with SQL Server 2008/2008R2 and will have to be modified for sql 2005. I do have a link from...
June 21, 2014 at 9:37 am
--A slight modification so it displays the memory used in MB as well.
-- Top 10 consumers of memory from Buffer Pool
SELECT TOP 10
[type] AS OBJECT_TYPE
...
June 13, 2014 at 10:31 am
Please do and post your feedback on the flaws with it and possible fixes so i can keep improving it.
June 3, 2014 at 8:23 am
Msg 213, Level 16, State 7, Line 1
Column name or number of supplied values does not match table definition.
June 2, 2014 at 11:45 am
What we are actually doing with that line of code is converting bytes to MB.
1024bytes = 1Kb
1024Kb = 1MB
therefore; 1MB = (1024 * 1024) = 1048576
Hence the "physical_memory_in_bytes/1048576" Column being...
May 18, 2014 at 11:24 pm
What version of sql server id you run it against?
May 18, 2014 at 11:17 pm
Thanks William!
I will test and make the updates
May 13, 2014 at 11:01 am
300 seconds is 5 minutes.
Microsoft recommends that if you have a PLE of 300 seconds, you should be good and generally, that works. The higher the number, the better for...
May 12, 2014 at 11:57 pm
Viewing 15 posts - 1 through 15 (of 34 total)