Join me at the PASS Summit
It seems just yesterday that we were all in Seattle together, getting a crash course in what’s new and exciting...
2012-06-25
423 reads
It seems just yesterday that we were all in Seattle together, getting a crash course in what’s new and exciting...
2012-06-25
423 reads
I’m happy to announce that the North Texas SQL Server User Group will be hosting our fourth SQL Saturday event...
2012-06-22
399 reads
I’m happy to announce that the North Texas SQL Server User Group will be hosting our fourth SQL Saturday event...
2012-06-22
719 reads
I’m working on a more comprehensive review of last week’s SQL Rally event, but I’d like to go ahead and...
2012-05-15
616 reads
I’m working on a more comprehensive review of last week’s SQL Rally event, but I’d like to go ahead and...
2012-05-15
475 reads
As I’ve been working with Data Quality Services over the past few weeks, I’ve spent a lot of time working...
2012-05-10
775 reads
As I’ve been working with Data Quality Services over the past few weeks, I’ve spent a lot of time working...
2012-05-10
1,145 reads
A compelling feature of the new Data Quality Services in SQL Server 2012 is the ability to apply rules to...
2012-05-09 (first published: 2012-05-04)
3,620 reads
In Data Quality Services, composite domains can be created to associate together two or more natural domains within a knowledge...
2012-05-07
1,196 reads
In Data Quality Services, composite domains can be created to associate together two or more natural domains within a knowledge...
2012-05-07
672 reads
By gbargsley
We’ve all been there. Someone walks up and asks, “Is SQL Server having issues?”...
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...
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