A Week of Books - Part 4
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
537 reads
Magazines today instead of books, but hopefully you'll count that as close enough to my theme of the week. I...
2008-12-17
537 reads
Triggers are supposed to fire for every update, but in this video we see how you can bypass a trigger for an update.
2008-12-16
4,393 reads
I've been catching up on reading over the last month and I feel like taking a break from things technical/community/etc...
2008-12-15
653 reads
I'm just finishing up Boards At Work which talks about how a good board of directors can make a big...
2008-12-15
565 reads
Just as I did last year I'm posting my evaluation scores for review. I co-presented with Steve Jones a session...
2008-12-15
801 reads
Ah, if you're reading this aren't you the curious one! I ran across the link below a while back and...
2008-12-11
635 reads
One of the things I'm not fond of is self-deprecation. Smacking yourself on the forehead when you screw up a...
2008-12-10
527 reads
It's fun to just sit and talk with people, never know what you'll learn or be forced to rethink based...
2008-12-09
729 reads
Managing by the numbers often gets a bad name among employees because it can lead to a lot of gaming...
2008-12-08
649 reads
I attended the Tampa Code Camp this past weekend. It was located at the Kforce Building in Tampa, a very...
2008-12-08
1,104 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