Backup Plans for Data Loss
Today Steve Jones discusses data loss, always a scary topic for the data professional.
2017-06-22
99 reads
Today Steve Jones discusses data loss, always a scary topic for the data professional.
2017-06-22
99 reads
Another post for me that is simple and hopefully serves as an example for people trying to get blogging as...
2017-06-22
519 reads
2017-06-22
836 reads
The decision to change platforms isn't one Steve Jones takes lightly.
2017-06-20
85 reads
I am honored to be speaking at the Data Platform Summit 2017. The event takes place August 17-19, 2017 in...
2017-06-20
562 reads
2017-06-20
916 reads
One of the things we need to do as data professionals is move data files around. Often we’ll get a...
2017-06-19
471 reads
DevOps can help, not just development, but also infrastructure, if you spend time adapting the practices to your environment.
2017-06-19
43 reads
2017-06-19
202 reads
This Friday Steve Jones talks about job posting and descriptions. This is the chance to think about what you do and how you might describe this to your replacement.
2017-06-16
111 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