Slides & Samples from my SQLSaturday #105 presentation about Advanced SQL Server Troubleshooting
As I have announced in my session last Saturday in Dublin, you can find here the
slides & samples for download.
Thanks...
2012-03-26
860 reads
As I have announced in my session last Saturday in Dublin, you can find here the
slides & samples for download.
Thanks...
2012-03-26
860 reads
In the last weeks and months I have prepared tons of SQL Server 2012 content for my
own SQL Server 2012...
2012-03-21
18,794 reads
As I have announced in my ColumnStore presentation last Saturday in Lisbon, you can
find here the slides
& samples for download....
2012-03-19
805 reads
As you might know, Microsoft has released on March 7 the RTM version of SQL Server
2012. If you are an...
2012-03-09
4,512 reads
I'm very happy today to announce 4 new upcoming SQL Server workshops across Europe
within the next months:
SQL Server Configuration...
2012-03-04
920 reads
Today I want to talk about Statistics Enhancements in SQL Server 2012. As you already
know SQL Server uses Statistic Objects...
2012-02-29
4,372 reads
In the last weeks it was very silent on my weblog, but life is pretty fast in 2012.
Currently I'm preparing...
2012-02-08
572 reads
A few days ago, one of my customers asked if there is a possibility to get a notification
from SQL Server...
2011-12-01
5,591 reads
I have a lot of customers with some impressive SQL Server workloads, those databases
are several hundred GB large, with several...
2011-11-23
7,960 reads
I'm very proud to announce today that I'm running next year
a new event series across Europe: the SQL Server 2012...
2011-11-17
832 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