Viewing 15 posts - 91 through 105 (of 758 total)
I would recommend you set up an alert for when log backups are not working. Something that checks when the last log backup was and alerts you if it's more...
November 22, 2013 at 5:48 am
The most important thing is the listener. You application's connection string will contain the listener.
The listener will direct the application to the relevant node.
November 22, 2013 at 5:26 am
As Gail pointed out, your log should not be growing. Proper sizing and regular log backups are vital.
Have a read through the link she posted.
If you need to monitor disk...
November 21, 2013 at 5:46 am
Without some sort of auditing process in place - it's gonna be extremely difficult to get what you want.
You could examine the transaction log with fn_dblog but transaction logs get...
November 19, 2013 at 6:53 am
Do you have some sort of auditing enabled on the instance?
Auditing = Auditing, Profiler Trace, XEvents, Triggers
November 19, 2013 at 4:00 am
This will alert you when the log usage gets to a certain %, this % amount is up to you.
CREATE procedure sqllogalert ...
November 18, 2013 at 5:33 am
What are you looking to capture?
Have you looked at running a server-side trace?
November 15, 2013 at 5:35 am
Have you managed to get to the bottom of this?
Are the execution plans different?
November 5, 2013 at 6:47 am
GilaMonster (10/29/2013)
Why would you expect to see an increase in lazy writes/sec when all you're doing are reads?...
October 30, 2013 at 6:13 am
GilaMonster (10/29/2013)
Why would you expect to see an increase in lazy writes/sec when all you're doing are reads?...
October 29, 2013 at 5:53 am
Thanks Gail
Regarding the free buffer list. I understand that the Lazy Writer is responsible for maintaining a decent amount of free buffers to serve incoming requests. I found the following...
October 14, 2013 at 4:46 am
GilaMonster (10/11/2013)
SQLSACT (10/11/2013)
So, is it safe to say that measuring checkpoint pages/sec is absolutely useless when investigating memory usage and pressure on my SQL Server.
No, it's very useful. It's...
October 11, 2013 at 5:52 am
So, is it safe to say that measuring checkpoint pages/sec is absolutely useless when investigating memory usage and pressure on my SQL Server.
High lazy writes/sec is the way to...
October 11, 2013 at 5:36 am
The Checkpoint process never removes pages from memory. It finds dirty pages, writes the changes to disk and marks the pages as clean. So that means that the page still...
October 11, 2013 at 1:26 am
Grant Fritchey (10/5/2013)
October 8, 2013 at 1:02 am
Viewing 15 posts - 91 through 105 (of 758 total)