Replaying workloads with the RML Utilities
In today's weblog posting I want to talk about replaying SQL Server workloads with
the RML Utilities. RML Utilities stands for...
2011-06-21
4,200 reads
In today's weblog posting I want to talk about replaying SQL Server workloads with
the RML Utilities. RML Utilities stands for...
2011-06-21
4,200 reads
Yesterday we got confirmation from SQLPASS if our submitted sessions for the upcoming SQLPASSS
summit in Seattle (October 11 – 14) were...
2011-06-16
708 reads
The most amazing journey that I have done in the past years was definitely SQLcruise
(see http://www.sqlcruise.com) – a SQL Server
event organized...
2011-06-12
557 reads
As announced in both of my SQL Server sessions at DevConnections in Karlsruhe/Germany
you can find here the slides & samples for...
2011-06-10
900 reads
I’m working my whole professional work life (around 11 years) with SQL Server, and
have see so many pitfalls in configuration...
2011-05-24
1,625 reads
It’s already a long time ago, since I spoke at SQLbits (first week of April), but
yesterday the speakers got their...
2011-05-17
729 reads
A few days ago, SQLPASS opened the voting for the precon’s and sessions for the annual
SQLPASS community summit. I’ve also...
2011-05-12
621 reads
During this week I have prepared a workshop about Locking & Blocking for one of
my customers. One big part of this...
2011-05-06
1,430 reads
As announced in both of my sessions, you can download the slides & samples for
my SQLbits sessions here:
Message
in a Bottle: Service...
2011-04-11
748 reads
Sind Sie schon mal in das folgende Problem-Szenario gelaufen, und mussten Ihren wohlverdienten
Feierabend und die Vorfreude auf das Wochenende opfern:...
2011-03-20
808 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