About TempDB and the Version Store
We will take notes here regarding tempDB, the Verison Store and how tempDB is used. Some of the content here is derived from…
Read MoreWe will take notes here regarding tempDB, the Verison Store and how tempDB is used. Some of the content here is derived from…
Read MoreThis blog will be where I post my PostgreSQL administration learning and it’s comparison to SQL Server from a SQL Server DBA’s viewpoint.…
Read MoreYou can view the status of a KILL command used to stop an open transaction by typing the following:
1 |
KILL [SPID] WITH STATUSONLY |
Views – 1985
Read MoreI saw this in the SQL logs today. It looks like some corruption happened in the transaction log of a specific database. I…
Read MoreI had a SQL Server at work today where I found the msdb database in “Recovery Pending” state. After reading a number of…
Read MoreI found a VERY useful query from Brent Ozar’s daily emails that go out on how you can check for the reason SQL…
Read More
1 2 3 4 5 6 7 8 9 10 11 12 |
USE master; GO SELECT name, dbname FROM syslogins WHERE dbname = 'MyDatabase' ORDER BY dbname SELECT name AS LoginName, default_database_name FROM sys.server_principals WHERE default_database_name IS NOT NULL ORDER BY default_database_name |
Views – 1996
Read MorePASS 2015 10-28-30 Seattle WA SQL Server Indexing for Performance Kimberly Trip NOTE: Narrow NC indexes very rarely are useful. NOTE: Putting a…
Read MorePASS 2015 10-27-30 Seattle WA Pre-Con Day 2 – SQL Server Internals – The Practical Angle Dmitri Korotkevitch Data Storage 101 Data Pages…
Read MorePASS 2015 10-26-30 Seattle WA Pre-Con Day 1 – 42 Tips to Performance Tuning, Optimization and Everything Pinal Dave TODO: Write missing index…
Read More