The Glue that Binds
This Friday Steve Jones polls the community of developers about the time they spend dealing with data access.
2008-09-18
67 reads
This Friday Steve Jones polls the community of developers about the time they spend dealing with data access.
2008-09-18
67 reads
This Friday Steve Jones polls the community of developers about the time they spend dealing with data access.
2008-09-18
59 reads
Dan McClain was voted the Exceptional DBA of 2008 by the SQLServerCentral.com community. Learn a bit more about this talented professional in his own words.
2008-09-17
5,896 reads
Retrieve data from different data sources such as Analysis Services and SQL Server relational database as one dataset, so that you can create tables, matrices of that data.
2008-09-17
9,998 reads
Microsoft products such as Windows Server Update Services (WSUS) 3.0 and Windows Sharepoint Services (WSS) 3.0 ship with SQL Server 2005 Embedded Edition. Now called the Windows Internal Database, more and more system administrators charged with managing WSUS and WSS are faced with the challenge of managing these databases. Since most of these system administrators are not full-fledged DBAs, how do they manage the Windows Internal Database?
2008-09-17
3,273 reads
Part 1 of this series discusses the prerequisites for SQL Server cluster installation. Subsequent installments will provide step-by-step examples of SQL Server 2008 cluster installation.
2008-09-17
1,778 reads
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-17
70 reads
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-17
97 reads
Coordinating the release of software among all the groups involved can be quite a chore. Steve Jones comments on some of the challenges.
2008-09-17
61 reads
Integration Services is the ETL platform for SQL Server. In this installment of SQL School, Brian Knight shows how to add a timestamp (current date) to the name of a file.
2008-09-16
4,540 reads
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
By SQLPals
Beware of Generic SQL Server License Keys (What to Use Instead) ...
By Brian Kelley
Professor Patrick Winston of MIT used to give a one-hour talk about how to...
Comments posted to this topic are about the item Creating a JSON Document II
By VishnuGupthanSQLPowershellDBA
Comments posted to this topic are about the item Backing Up Azure Key Vault...
Comments posted to this topic are about the item Every Database Has Problems
I want to create a JSON document that contains data from this table:
TeamID TeamNameCity YearEstablished 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960If I run this code, what document(s) is/are returned?
SELECT json_objectagg( n.city : n.TeamName) FROM dbo.NFLTeams;See possible answers