Lost in Translation – Deprecated System Tables – sysusers
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-21
1,756 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-21
1,756 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-20
859 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-20
940 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-19
562 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-19
691 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-19
960 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-16
1,192 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-16
736 reads
Throughout the week, I like to tweet links to the things that I’ve been reading. Since they all come out through out...
2012-11-12
636 reads
Last week was the PASS Summit and there were a few cool announcements made. One in particular was the release...
2012-11-12
569 reads
By Chris Yates
In the beginning, there was OLTP – Online Transaction Processing. Fast, reliable, and ruthlessly...
One thing I’ve always loved about the Scooby-Doo cartoon is that he never solved...
By Kevin3NF
Flexibility and Scale at the Database Level When SQL Server 2012 introduced Availability Groups...
Hello SQL Server 2022 16.0.4212.1 running on a Windows Server 2025 Std,V 24H2, SO...
i have subscription of github copilot which i can access in vs 2022 comunity...
Comments posted to this topic are about the item Password Guidance
What happens if you run the following code in SQL Server 2022+?
declare @t1 table (id int); insert into @t1 (id) values (NULL), (1), (2), (3); select count(*) from @t1 where @t1.id is distinct from NULL;See possible answers