Lost in Translation – Deprecated System Tables – sysremotelogins
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-29
1,851 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-29
1,851 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-29
2,434 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-28
1,330 reads
As a few of you know, I took the Microsoft Certified Master (MCM): SQL Server 2008 lab at this year’s...
2012-11-28
734 reads
Ever thought you could learn a little bit more about indexing? Now here’s the perfect opportunity. Today only you can...
2012-11-26
805 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-26
626 reads
Welcome to this Friday’s reblog summary post. The aim of these posts is to bring some old posts that newer...
2012-11-23
644 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-22
1,554 reads
This post is part of a blog series which focuses on translating compatibility views in SQL Server to their respective...
2012-11-22
1,328 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,099 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