Time Pass With Transaction Log - Part 3 fn_dblog
As part of this Transaction Log Internals series, In this article we are going to observe the use of fn_dblog and some of its important...
2012-11-19
17,945 reads
As part of this Transaction Log Internals series, In this article we are going to observe the use of fn_dblog and some of its important...
2012-11-19
17,945 reads
I needed to upgrade my tools. It was not a matter of “want” but of “need”. It’s no longer enough to have just the bare...
2012-11-19
958 reads
I’m often asked about what books I would recommend for learning more about SQL Server 2008 and I always respond...
2012-11-19
1,035 reads
Recently in the news an article circulated about a coordinated attack by a team of hackers known as Anonymous. Information...
2012-11-19
502 reads
As part of this Transaction Log internal series, In this article We are going to revisit some basic properties of Transaction log.Though architecture, purpose...
2012-11-18 (first published: 2012-11-15)
3,391 reads
Over the past three years since I first took a look at the
insides of a Transaction Log file, I have...
2012-11-16 (first published: 2012-11-06)
8,365 reads
I have heard it said that a former US President once remarked "People tell you who they are by their...
2012-11-16
662 reads
Develop a High Availability/Disaster Recovery Strategy – Protecting your company’s most valuable asset and keeping that asset available is a very...
2012-11-16
1,081 reads
I sat the through the big announcements at the 2011 PASS Summit about the partnership between Microsoft and Hadoop. I...
2012-11-16
1,211 reads
HP Announcement: PDW V2 Appliance Features New features for the HP’s Enterprise Data Warehouse (EDW) V2 appliance for SQL Server PDW have been announced! Highlights: Lower price point (backup...
2012-11-16
12 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