SQLSaturday #8 - Orlando
The whole idea of having free events, bringing learning to people locally wasn't something that I was thrilled with. It's...
2008-10-26
1,430 reads
The whole idea of having free events, bringing learning to people locally wasn't something that I was thrilled with. It's...
2008-10-26
1,430 reads
How much do you trust companies with your data? Steve Jones finds a couple new web sites that offer great services, but is it worth the price?
2008-10-26
70 reads
How much do you trust companies with your data? Steve Jones finds a couple new web sites that offer great services, but is it worth the price?
2008-10-26
66 reads
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
2008-10-24
165 reads
2008-10-24
5,122 reads
Steve Jones talks about virtualization with databases, but not in the way you might think.
2008-10-23
173 reads
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
2008-10-23
80 reads
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
2008-10-23
68 reads
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
2008-10-23
71 reads
For this Friday's poll, Steve Jones asks about what absolutes you might have in your job.
2008-10-23
70 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