2017-03-02
1,185 reads
2017-03-02
1,185 reads
On Monday, Redgate released v1.0 of SQL Clone, and I’m excited that the product is finally available. I’m excited because...
2017-03-01
665 reads
I saw this week that there was a new CTP (v1.3) of SQL Server v.Next. I haven’t had a lot...
2017-03-01 (first published: 2017-02-23)
4,840 reads
2017-03-01
1,118 reads
2017-02-28
239 reads
2017-02-28
1,265 reads
Machine learning and AI are becoming more and more prevalent, which Steve Jones thinks is good.
2017-02-27
118 reads
I’ll be speaking at Visual Studio Live – Austin in May 2017. I was fortunate to be selected to speak again,...
2017-02-27
926 reads
This week Steve looks at the challenges of security for medical data.
2017-02-27
88 reads
2017-02-24
1,059 reads
By Steve Jones
It’s Prime Day. A few of my recommendations, since I want to do some...
With Fabric Mirroring, Microsoft is promoting a nice and appealing story for operational reporting...
If you’ve been watching AI roll through the data community and thinking, “this seems...
Comments posted to this topic are about the item SQL Art, Part 4: Happy...
WA:08218154393 Jl. Paus No.81, RT.1/RW.8, Wil, Kec. Pulo Gadung, Kota Jakarta Timur, Daerah Khusus...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
I have this code on SQL Server 2022. What happens when it runs all at once?
DROP TABLE IF EXISTS dbo.Commission GO CREATE TABLE dbo.Commission (id INT NOT NULL IDENTITY(1,1) CONSTRAINT CommissionPK PRIMARY KEY , salesperson VARCHAR(20) , commission VARCHAR(20) ) GO INSERT dbo.Commission ( salesperson, commission) VALUES ( 'Brian', 12 ), ( 'Brian', 'None' ) GOSee possible answers