SQL Server Telemetry
SQL Server captures information about usage and send it to Microsoft. Is that a problem? Not for Steve Jones.
2017-04-18
868 reads
SQL Server captures information about usage and send it to Microsoft. Is that a problem? Not for Steve Jones.
2017-04-18
868 reads
2017-04-18
1,033 reads
VSTS (Visual Studio Team Services) continues to grow and change over time. It seems every few months I see some...
2017-04-17
1,663 reads
Today Steve Jones looks at some data loss lawsuits against Microsoft, but asks the general question of whether software vendors need to be more liable (and careful).
2017-04-17
74 reads
One of the things that I do a lot is demo changes to databases with CI/CD in a DevOps fashion....
2017-04-17
802 reads
This week Steve looks at all the information and learning available for Power BI.
2017-04-17
125 reads
takes place in a few weeks and I’m excited. Austin is one of those cities I enjoy visiting, with a...
2017-04-14 (first published: 2017-04-10)
842 reads
Do you know what the cost is for your database going down? Maybe more interesting, is do you want to know?
2017-04-14
149 reads
2017-04-14
1,202 reads
The future will see more of our data used in machine learning and other AI-like systems. Is that something we want?
2017-04-13
61 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