Getting started with StreamInsight
A quick-start to SQL Server StreamInsight and Complex Event Processing with a step-by-step example on stock quotes.
A quick-start to SQL Server StreamInsight and Complex Event Processing with a step-by-step example on stock quotes.
The next installment of our Stairway to Integration Services looks at the precedence constraints in your package workflow.
Learn how you can add custom logging to your Integration Services packages in this installment of our Stairway to Integration Services.
In the last article of the series, you will learn how to manage your reports once you've finished development, including how to use the Report Manager, deploy reports, and send reports to the appropriate end users.
In this next stage of the Stairway to Integration Services, Andy Leonard looks at how you can manage multiple source locations in a flexible way.
Today, Steve wonders when we'll stop installing SQL Server on a host machine.
An example of building a StreamInsight input adapter for retrieving Twitter data in real-time.
This article discusses how to create custom functions, methods, and expressions so that you can make your data do things that Reporting Services won't!
In this first level, we look at the overview of what metadata is contained in each database, gain some understanding of the different types of information, and examine a few basic examples.
Learn the basics of Reporting Services, what it is, and what it can do from you. From MVP Jessica Moss, we have a new series that can help you get started with this part of SQL Server.
By gbargsley
Hello, dear blog reader. Today’s post is coming to you straight from the home...
By Steve Jones
This month I’m thrilled that Steve Hughes is hosting. I’ve read this Data on...
By Steve Jones
One of the things a customer asked recently about Redgate Data Modeler was how...
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