2017-06-16
1,006 reads
2017-06-16
1,006 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-06-15
1,147 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-06-15 (first published: 2017-06-01)
1,647 reads
The Internet of Things is coming, and bringing lots of data, but security needs to be included as well.
2017-06-15
55 reads
2017-06-15
1,011 reads
2017-06-14
1,391 reads
2017-06-14
1,006 reads
2017-06-13
69 reads
This month the T-SQL Tuesday invitation is from Grant Fritchey, my colleague at Redgate Software. Surprise, surprise, the topic is...
2017-06-13
450 reads
2017-06-13
895 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...
WhatsApp:0818-751-777 Wisma Asia, Jl. Letjen S. Parman No.Kav. 79, RT.4/RW.9, Kota Bambu Sel., Kec....
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