Last Chance to Save
This is the last week to register for the PASS 2006 Summmit in Seattle and save $300. Read on about what you'll be missing if you don't get up there.
2006-10-25
1,372 reads
This is the last week to register for the PASS 2006 Summmit in Seattle and save $300. Read on about what you'll be missing if you don't get up there.
2006-10-25
1,372 reads
We've added a few more bundles to our sale, including a new book: The Best of SQLServerCentral.com - vol. 4. If you're not coming to the PASS 2006 Summit, this is your chance to snag this volume for your corporate bookshelf.
2006-10-17
2,121 reads
The training arm of SQLServerCentral.com is spinning off to its own company. This is the place to come for high quality custom training.
2006-10-16
2,334 reads
Red Gate Software is releasing a low-cost version of its best-selling SQL Backup tool that makes data protection for small businesses fast and simple.
2006-10-09
2,180 reads
We're blowing out inventory again to make room for new books. Stock up your SQL Server library with a few of our titles.
2006-10-02
3,715 reads
Come to the PASS Summit this year and see three of the big influences on SQL Server: Steve Ballmer, Paul Flessner, and Dave Campbell. They're all giving keynotes. And did I mention SQLServerCentral.com is giving away an XBOX 360? Read more about it.
2006-09-28
1,709 reads
We've changed the way we send email for the newsetters. Read about our new address and whitelisting.
2006-09-12
2,441 reads
The next meeting of the Detroit Area SQL Server User Group is September 14th.
2006-09-08
1,647 reads
Due to overwhelming demand, we've opened up another Integration Services class. Start Christmas vacation early in Orlando on Dec 18.
2006-08-28
2,166 reads
Learn ETL solutions from SQL Server MVP Brian Knight at the SQLServerCentral.com training center.
2006-08-08
6,255 reads
By Steve Jones
This month we have a new host, Meagan Longoria, who graciously agreed to help...
By Steve Jones
I’m at the UK Redgate office today, meeting with senior leaders in all areas...
Optimizing Azure SQL Database performance often begins with identifying the most resource-intensive queries. Understanding...
Comments posted to this topic are about the item Creating a JSON Document IV
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Restoring Azure Key Vault Keys...
When the schema of an object is changed, SQL Server wipes out the previous...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT YearEstablished, json_objectagg(city : TeamName) FROM dbo.NFLTeams GROUP BY YearEstablished;See possible answers