Five Intelligent Query Processing Features in SQL Server 2022 That Quietly Tune Your Workload
Learn about a few new features built into SQL Server 2022 that can help improve performance on your workload.
2026-07-08
3,057 reads
Learn about a few new features built into SQL Server 2022 that can help improve performance on your workload.
2026-07-08
3,057 reads
Learn how parameter sniffing appeared in a real system and how the issues were solved.
2026-06-29
4,527 reads
This article shows how you can generate embeddings in SQL Server 2025, store them, and use them in your queries.
2026-06-08
2,573 reads
SQL Server 2022 brought powerful new T-SQL functions that eliminate long-standing workarounds. This article walks through five of the most impactful additions — GENERATE_SERIES, GREATEST/LEAST, DATE_BUCKET, the WINDOW clause, and IS NOT DISTINCT FROM — with practical code examples you can use immediately.
2026-05-29
6,594 reads
By Brian Kelley
If you haven't seen the announcement, Anthropic was able to utilize Claude (Mythos Preview)...
Most embedding pipelines on AWS have the same shape: a job reads rows out...
By Arun Sirpal
Transaction log issues are one of the quietest ways a healthy database turns into...
Comments posted to this topic are about the item Symmetric Key Encryption
Comments posted to this topic are about the item The “Successful Login” Dilemma: Why...
Comments posted to this topic are about the item Building Your Own Software
If I run this statement in SQL Server 2025, how is the password encrypted?
CREATE SYMMETRIC KEY MySymmetricKey WITH ALGORITHM = AES_256, KEY_SOURCE = 'My secret key source passphrase', IDENTITY_VALUE = 'My secret identity value' ENCRYPTION BY PASSWORD = 'S&perS#cretP@ssword7'; GOSee possible answers