Azure SQL Database – Link User to Login
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-20
916 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-20
916 reads
One important skill is for the DBA or developer of the future is being sure they can present data to clients in a way they can use it.
2015-07-20
202 reads
2015-07-20
1,906 reads
2015-07-17
1,355 reads
Everyone wants to know who is actually using Continuous Deliver for their software. Today Steve Jones has a prominent example.
2015-07-16
294 reads
2015-07-15
119 reads
Is it more imortant to use the data or your experience? Does one have more weight than the other?
2015-07-14
135 reads
Last year at this time I was nearing the end of my sabbatical. I’ve been using the Timehop app on...
2015-07-14
725 reads
I’m writing this post as a way to help motivate the #SQLNewBloggers out there. Read the bottom for a few...
2015-07-13
752 reads
We’ve got more Workshops coming this fall from Redgate Software to help you get the most out of our tools...
2015-07-13
755 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