I’m on dbatools!
I made the front page of dbatools, as a part of the community that is supporting this project. Along with...
2017-05-05
612 reads
I made the front page of dbatools, as a part of the community that is supporting this project. Along with...
2017-05-05
612 reads
2017-05-05
132 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-05-04
793 reads
2017-05-04
947 reads
The secret passwords we store in systems might be secure from discovery, but are they secure from use?
2017-05-02
83 reads
2017-05-01
78 reads
VS Live takes place in Austin on May 15-18, 2017. This is a great conference in a fun city. It’s...
2017-04-28
842 reads
Today Steve Jones looks forward to the next version of SQL Server, with his curiosity to see if you feel the same way.
2017-04-28
141 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-04-27
993 reads
Steve Jones looks at SQL Server on Linux and how this may differ from what most of us have worked with in the past.
2017-04-27
108 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...
Comments posted to this topic are about the item Concurrency and Baseline Control: Level...
Comments posted to this topic are about the item Spending Time in the Office
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