Mladen Prajdić Blog

Blog about stuff and things and stuff. Mostly about SQL server and .Net

Immediate deadlock notifications without changing existing code

In my previous post about immediate deadlock notifications in SQL Server 2005 I've shown a way to use a try catch block to get the deadlock error. The con of this method, although it uses best practice for error handling in SQL Server 2005, is that you have to change existing code and it doesn't work for non stored procedure code. Read more →

SQL Server 2005: Immediate Deadlock notifications

Deadlocks... huh?? Deadlocks can be a pain to debug since they're so rare and unpredictable. The problem lies in repeating them in your dev environment. That's why it's crucial to have as much information about them from the production environment as possible. Read more →

Integrating Profiler and PerfMon Log Files

I've written an article here on SQL Team about Integrating Profiler and PerfMon Log Files. Troubleshooting SQL Server requires the use of both PerfMon (Performance/System Monitor) and SQL Trace files created by SQL Profiler or directly by SQL Server trace. Read more →