Achieve Flexible Data Modeling with the Entity Framework
Here the author answers questions regarding the Entity Framework and provides an understanding of how and why it was developed.
2008-08-01
3,074 reads
Here the author answers questions regarding the Entity Framework and provides an understanding of how and why it was developed.
2008-08-01
3,074 reads
This paper explores several ideas to improve the query and data modification performance of the XML data type in Microsoft SQL Server 2005. To get the most value from this paper, you need to be familiar with the XML features in SQL Server 2005. For background material, see XML Support in Microsoft SQL Server 2005 and XML Best Practices for Microsoft SQL Server 2005 on the Microsoft Development Network (MSDN)
2008-08-01
2,382 reads
Tjay Belt brings us a quick and easy DR solution that might provide you some protection if you don't have a DR plan and want some lessons learned in this area.
2008-07-31
8,328 reads
This video covers the basics of creating a view in SQL Server. Views allow you to treat a query as a table and simplify your query writing. This view covers the Query Designer in Management Studio.
2008-07-31
5,971 reads
This article describes how to enable Instant File Initialization in SQL Server 2005
2008-07-31
3,738 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
65 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
64 reads
This Friday Steve Jones talks about the social networking phenomenon and asks how it should affect your career?
2008-07-31
62 reads
In part one of this series from Actuality Business Intelligence, Ira Whiteside brings us a look at building your own SSIS transformation.
2008-07-30
17,330 reads
SQL Server MVP Jacob Sebastian starts a new series looking at the changes in SQL Server 2008 to the management tools.
2008-07-30
7,254 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