SQL Audit – User-defined Audit Events
One thing I failed to touch on during my series on SQL Audit was the use of user-defined events in...
2012-10-18
3,227 reads
One thing I failed to touch on during my series on SQL Audit was the use of user-defined events in...
2012-10-18
3,227 reads
Today, I am going to share few very useful scripts which will report us on Database Backup from different view...
2012-10-18
7,055 reads
Problem Statement
SQL Server has got in-built functions to convert the given string into LOWER() or UPPER() format but it does...
2012-10-18 (first published: 2012-10-15)
13,502 reads
This December I will be presenting An Introduction to SQL Server 2008 Hand-On for Learning Tree at the LEC in...
2012-10-18
434 reads
Hi everyone,
So the other day on twitter in #sqlhelp and privately with some friends at Microsoft and elsewhere I had...
2012-10-18
891 reads
Join me next week for a really fun presentation on building Dynamic SSRS
reports using Analysis Services cubes as a...
2012-10-18
1,600 reads
Just before SQL PASS Summit in November, House of Brick and I will be holding a free boot camp (update – link removed after event was...
2012-10-18
868 reads
I received the following error today when attempting to use Visio’s ‘Database Model Diagram’ template under category ‘Software and Database’. The program VISIO.EXE version 14.0.6122.5000 stopped interacting with Windows...
2012-10-18
38 reads
I received the following error today when attempting to use Visio’s ‘Database Model Diagram’ template under category ‘Software and Database’.
The...
2012-10-18
1,180 reads
Recently VMware announced at VMworld Europe that it will soon release a product called vCenter Multi Hypervisor Manager, supposedly in...
2012-10-18
621 reads
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