Have you ever wanted to uppercase all string columns in a database? Probably not. But, this was still an interesting exercise 🙃
Category: Programming
Differences Between the Various Binary Collations (Cultures, Versions, and BIN vs BIN2)
Come explore the actual differences between the seemingly not-so-different binary collations...
What Does the Undocumented UNCOMPRESS Function Do?
Ever notice how IntelliSense in SSMS lists functions that don't work or aren't documented? Here's documentation for one that works: UNCOMPRESS
How Does DBCC CHECKIDENT Really Work When Resetting the Identity Seed (RESEED)?
Does resetting an Identity Seed to a specific value via DBCC CHECKIDENT(..., RESEED, new_seed_value) work the way the documentation states? It depends 🙃
Beware! Beware of Unintended Changes When Altering Columns!
Prevent Full Script Execution (Understanding and Using PARSEONLY and NOEXEC)
Have you ever needed to prevent an entire script (or part of one) from executing? See how the session-level options PARSEONLY and NOEXEC can accomplish this.
SQLCLR vs SQL Server 2017, Part 9: Does PERMISSION_SET Still Matter, or is Everything Now UNSAFE?
Native UTF-8 Support in SQL Server 2019: Savior or False Prophet?
SQLCLR vs SQL Server 2017, Part 8: Is SQLCLR Deprecated in Favor of Python or R (sp_execute_external_script)?
(last updated: 2020-01-09 @ 13:15 EST / 2020-01-09 @ 18:15 UTC ) With the additional (and annoying) configuration step required to get SQLCLR Assemblies to load starting in SQL Server 2017, some people have been wondering what is going on with SQLCLR. Considering that this new restriction is the only real change to SQLCLR since… Continue reading SQLCLR vs SQL Server 2017, Part 8: Is SQLCLR Deprecated in Favor of Python or R (sp_execute_external_script)?