The Penalty for a Data Breach
One of the things that will be debated quite a bit in the next few years will be the penalties for data loss.
2016-06-13
118 reads
One of the things that will be debated quite a bit in the next few years will be the penalties for data loss.
2016-06-13
118 reads
2016-06-10
95 reads
2016-06-09
68 reads
2016-06-07
107 reads
Microsoft has released the first version of a new sample database for SQL Server.
2016-06-06
621 reads
2016-06-06
121 reads
Today Steve Jones talks about the risk inherent in any project, and how we should be aware of our mistakes, learn from them, and sometimes just give up when we've made too many.
2016-06-03 (first published: 2012-02-22)
223 reads
2016-06-02
86 reads
2016-06-01
115 reads
The overloading of terms creates confusion, which means that communication is more difficult.
2016-05-31
84 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