Variables in Dynamic SQL
I had someone ask me about this the other day. Specifically getting variable data out of a dynamic SQL statement....
2017-11-16
1,491 reads
I had someone ask me about this the other day. Specifically getting variable data out of a dynamic SQL statement....
2017-11-16
1,491 reads
I was in Glasgow this Friday enjoying the fantastic hospitality of the Glasgow SQL User Group@SQLGlasgow and presenting sessions with Andre...
2017-11-16
443 reads
This post is for a specific type of person if you are:
New to source control Are getting started on your path to the continuous delivery nirvana Have been...
2017-11-16
3 reads
This post is for a specific type of person if you are:
New to source controlAre getting started on your path...
2017-11-16
351 reads
This post is for a specific type of person if you are:
New to source control Are getting started on...
2017-11-16
38 reads
This post is for a specific type of person if you are:
New to source control Are getting started on...
2017-11-16
40 reads
Why would you create a Linked Server to an Azure SQL Database?
If you work in a hybrid environment with some...
2017-11-15
1,356 reads
What is the GO statement and why is it so important to use? When do I have to use it?...
2017-11-15
1,076 reads
Let’s face it: column enlargement is a very sensitive topic. I get thousands of emails every month on this particular...
2017-11-15
923 reads
For some reason I attract all kinds of misery when working with Master Data Services. Today I was trying to...
2017-11-15
2,712 reads
A short blog post about an issue with Fabric Mirroring (with Azure SQL DB...
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...
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