Development & Performance, SQL Server SQL Server: why can’t I read the full table in parallel??? 21.09.2026 by Louis Tochon Why SQL Server keeps a full SELECT * serial: I/O cost is never divided across threads. Forcing parallelism burned 3x the CPU.
Development & Performance, SQL Server SQL Server: Stop ordering index columns by selectivity 08.09.2026 by Louis Tochon Column order does not affect equality seeks in SQL Server. Measured on 5M rows, then proven inside the B-tree pages.
Development & Performance, SQL Server Why UUIDv7 does not reduce fragmentation in SQL Server 04.09.2026 by Louis Tochon UUIDv7 places its timestamp first, but SQL Server compares uniqueidentifier values starting from the last bytes. Measured on 25,000 inserts: no gain over NEWID().
Database management, Oracle, SQL Server Fixing ORA-00904 on Oracle hidden columns during SSMA data migration 26.08.2026 by Louis Tochon SSMA fails with ORA-00904 on Oracle SET UNUSED columns. Fix it with a custom select aliasing NULL, no source DDL required.
Cloud, Database Administration & Monitoring, NoSQL, SQL Server SQL Server vs MongoDB: When the cloud is your adversary (Always Encrypted vs Queryable Encryption) 10.08.2026 by Louis Tochon When the cloud admin is the threat: how SQL Server and MongoDB let you query encrypted data, and what each approach costs.
Development & Performance, SQL Server Split, Sort, Collapse: how SQL Server survives an overlapping unique update 27.07.2026 by Louis Tochon How SQL Server shifts a whole unique column by +1 without ever creating a duplicate using Split/Sort/Collapse.
Database Administration & Monitoring, SQL Server When an idle transaction starves the worker pool (THREADPOOL) 20.07.2026 by Louis Tochon How a forgotten transaction exhausted SQL Server's worker pool, triggered THREADPOOL waits, and only DAC could fix it.
Development & Performance, SQL Server Measuring the real performance cost of SQL Server XE buffers 08.07.2026 by Louis Tochon Are Extended Events always lightweight? See how a bad config converts event loss into query latency through DMVs.
Development & Performance, SQL Server How Row Goal shapes your SQL Server query strategy by hunting for pierogis 15.05.2026 by Louis Tochon Mastering SQL Server Row Goals and how TOP, EXISTS, and FAST N influence execution plans and how to avoid performance traps in your queries(…)
Development & Performance, SQL Server SQL Server 2025 In-Memory: New Cleanup Features & SQLBits 2026 Insights 10.05.2026 by Louis Tochon SQL Server 2025 finally allows dropping In-Memory filegroups, a breakthrough analyzed here alongside expert performance insights from SQLBits 2026.