Five people you should meet at the PASS Summit
As I write this, I’m airborne and on my way to Seattle for the summit week (the Microsoft MVP Summit,...
2014-11-01
948 reads
As I write this, I’m airborne and on my way to Seattle for the summit week (the Microsoft MVP Summit,...
2014-11-01
948 reads
“It’s the most wonderful time of the year…”
No, not the end-of-year festival of repetitive music, overeating, and trampling on other...
2014-10-31
1,027 reads
Recently I was building a new virtual machine for presentations, and loaded up my usual battery – Windows 7, SQL Server...
2014-09-24 (first published: 2014-09-22)
6,467 reads
In the blogging meme of the day, I was tagged by my friend Tim Costello to share four things I...
2014-09-05 (first published: 2014-08-28)
8,200 reads
There’s a brand new business intelligence conference launching next month in Denver, Colorado. The Mile High Tech Con is a...
2014-06-27
1,239 reads
This is the second in a series of posts about SSIS parent-child architecture. You can find the index page here.
In...
2014-06-26
6,071 reads
I’m happy to announce that I will be speaking at the SQL PASS Summit this fall. The summit will be...
2014-06-25
835 reads
Next month, I’ll be making a couple of stops at SQL Saturday events in the south. On May 3, I’ll...
2014-04-18
758 reads
It’s a little over a week until this year’s SQL Saturday festivities kick off in Lisbon, Portugal, and I’m very...
2014-04-01
705 reads
I met up for lunch with a good friend and former coworker today, and among the topics of discussion was...
2014-02-19
840 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