|
What are the best tools and processes for periodically monitoring and troubleshooting sql server performance issues?
Started by James Moore on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at serverfault):
Perfmon is a great way to get....
I came across a blog by Brent Ozar about it: http://www.brentozar.com/archive/2006/12/dba-101-using-perfmon-for-sql-performance-tuning/ .
I was tasked with this same thing.
I got roped into being the 'DBA' for my company .
|
|
Is it possible in any way to troubleshoot the build process in Visual Studio? I'd like to see which part of the build specifically takes so much time.
Started by rafek on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Watch the output window in visual....
In the Output Window, you'll get a time summary at the end, and you can see at which point in the process there is a long pause .
Tools\Options\Project and Solutions\Build and Run\MSBuild output verbosity -> verbose.
|
|
I'm looking for some kind of tool that will let me slice and dice IIS web logs, for troubleshooting purposes...
All tools I've found are designed to analyze logs for a "Google Analytics" type of output, but what I want is more like "see all hits made ...
Started by Daniel Magliola on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Http://www.msexchange.org/tutorials....
Http://www.microsoft.com/downloads/details.aspx?FamilyID=890cd06b-abf8-4c25-91b2-f8d975cf8c07&displaylang=en
Here is another great link.
It is a free tool to analyze all kinds of logs including IIS logs .
Use logparser.
|
Ask your Facebook Friends
|
At my prior job of 5 years, I eventually had to leave because I was growing into the go-to guy for production support and troubleshooting. I was spending at least half of my time doing queries in production, event log scraping, etc. Yes, we had a QA department...
Started by joeslice on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Developers on the project teams would work on new features and... .
I don't know the specifics about how your company works but one of the better situations I've worked in was when we had 2 teams, one project developers and one production support developers .
|
|
I've got a Grails application that does a fairly decent amount of domain object creation and destruction, and it seems to run out of PermGen space at a very, very rapid rate. I've done the usual tweaks (bumped PermGen to 256M, enabled class GC, etc.),...
Started by Don Werve on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
I personally....
Eclipse Memory Analyzer is a free tool that is at least as good as Yourkit .
It is commercial, but it has a free evaluation version available for one-shot debugging .
YourKit is a nice tool I have used multiple times to diagnose memory issues .
|
|
We have gotten several emails and phone calls about yellow text appearing on our webpages at http://www.ciu.edu .
We are specifically using a black text in the stylesheet. It is on a tan background.
One person claimed to be color blind and I have tried...
Started by theosoft on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
You do have a small IE-only stylesheet that loads, however that contains... .
Inquire as to these as well, then let us know .
Can you get a screen grab from one of the users? Being able to confine the problem to a particular OS and browser might also be helpful .
|
|
I set up a simple event handler as mentioned here , but it appears that the selector isn't called. I put the code in my AppDelegate class and wired up the delegate in IB. Tried putting in some NSLog()s and breakpoints in the selector I expect to be called...
Started by jxpx777 on
, 5 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
If your app delegate is created in your MainMenu.nib, then... .
The big question is: Where are you calling NSAppleEventManager's -setEventHandler:...? You need to call this before your app finishes launching if you want to catch a URL that started your app .
|
|
What online networking troubleshooting tools do you find indispensable and why?
The one that I use the most often is network-tools.com because it does ping, DNS lookups, tracetorutes, and email SMTP testing but I'm always looking for better tools.
Started by Dave Forgac on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at superuser):
I use www.geektools....
Very handy when you're hurried and could easily overlook a detail .
Not only does it spot problems, but it also gives suggestions for remediation .
Whenever I have mail or DNS questions, I always turn to a quick run-down with IntoDNS .
|
|
I am attempting to troubleshoot some issues on machines that I don't have access to. The problems are very intermittent and impossible to reproduce locally. I am thinking of asking them to install WinDbg so they can generate a stacktrace/dump of the process...
Started by Jon Tackabury on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
If you are working on a ....
That way round you can access all the details of the other system just as it is your own system .
If you are working on a windows system, you could ask the owner of the other machine to allow your machine remote desktop access .
|
|
I've been having the same problem with several applications lately -- I start them and they just hang. I don't see anything on the screen, however the application is listed in Task Manager and its CPU usage is 0%.
Are there any utilities that can help...
Answer Snippets (Read the full thread at serverfault):
Are the processes related in anyway? If they ....
The rest of the SysInternals suite is useful too.
Like Joseph said, Process Explorer is a good place to get started .
Exploring.
You'll need to do a little ...
Process Explorer should help you get started.
|