{{theTime}}

Search This Blog

Total Pageviews

Enable Trace Flag 1024, 1222 to detect deadlocks in msssql server

How to enable trace flag 1024, 1222 to log the deadlock sql's to the error log.

DBCC TRACEON (1024,1222)

Turn off dead lock trace flag
DBCC TRACEOFF (1024,1222)

No comments:

Optimizing Java Applications for Low-Latency Microservices

Introduction Microservices architecture has become a go-to for building scalable, modular systems, but achieving low latency in Java-based...