Less QA?
It seems that QA is being cut more and more as software development advances. Is that a good thing? Steve Jones has some thoughts.
2017-05-12 (first published: 2013-07-31)
212 reads
It seems that QA is being cut more and more as software development advances. Is that a good thing? Steve Jones has some thoughts.
2017-05-12 (first published: 2013-07-31)
212 reads
There’s a sample to work through here: https://docs.microsoft.com/en-us/sql/relational-databases/graphs/sql-graph-sample
I decided to try this in CTP2 and just see how it works....
2017-05-12
1,205 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-05-11
582 reads
2017-05-11
1,037 reads
I haven’t messed with the new DBCC CloneDatabase option in SQL Server 2014/12016 (depending on patches), but recently I saw...
2017-05-10
767 reads
2017-05-10
858 reads
2017-05-09 (first published: 2013-08-08)
300 reads
2017-05-09
989 reads
2017-05-08
106 reads
Steve Jones is off to Seattle for the rest of the week attending Microsoft Build 2017.
2017-05-08
102 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