Introduction to Microsoft R Services in SQL Server 2016
General introduction to R Services in SQL Server 2016 and how R server works with external stored procedure.
General introduction to R Services in SQL Server 2016 and how R server works with external stored procedure.
Disaster recovery is one of those situations that we plan for and hope we never experience. Are you prepared?
Erik Darling loves query store, but he really hates the default capture mode.
The RDBMS works great for many situations, but is it ever fast enough to meet all your needs?
There is a myth that DDL statements can't be rolled back. This article tests and debunks the myth.
In this second article of the series, Diogo Souza walks you through creating the MongoDB code, the query side of the pattern, to complete the CQRS configuration.
Azure SQL Data Warehouse gets some improvements, and Steve has a few comments.
In this tip we look at how you can use DAX formulas within your SQL Server Reporting Services Report Builder reports.
Explore the Azure Data Studio dashboards and see how to customize one of these dashboards to include a new widget.
By Steve Jones
I wrote an article recently on the JSON_OBJECTAGG function, but neglected to include an...
By HeyMo0sh
After working deep in cloud operations, I’ve learned that FinOps isn’t really about dashboards...
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
Comments posted to this topic are about the item Creating a JSON Document I
Comments posted to this topic are about the item Who is Irresponsible?
Comments posted to this topic are about the item Designing Database Changes Before Deployment:...
I want to create a JSON document that contains data from this table:
TeamID TeamName City YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933If I run this code, what is returned?
SELECT json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers