Presentations: Slides and Demos
Over the past couple of weeks I have given several presentations. At each presentation I have promised to post the...
2011-02-09
659 reads
Over the past couple of weeks I have given several presentations. At each presentation I have promised to post the...
2011-02-09
659 reads
Since I am working at a client this week in Houston, I begged Nancy Hide Wilson (President Houston SQL Server Users...
2011-02-07
592 reads
Recently at SQL Saturday #57 – Houston I explained how to add a custom folder to your SSIS package store. I...
2011-02-07
1,469 reads
Over the past six months I have writing chapters for my next book. The book is titled SharePoint 2010 Business...
2011-02-07
766 reads
Well, one of my goals this year was to focus on branding myself a little more. So I decided to...
2011-02-03
446 reads
Join me tomorrow for a little CDC.
#47-Introduction to Change Data Capture
Speaker: Patrick LeBlanc
Add To Outlook: Add To Calendar
Meeting URL:https://www.livemeeting.com/cc/usergroups/join?id=269DRP&role=attend
Date and...
2011-01-31
1,964 reads
So you don’t have anything to do this Saturday.Well, if you have an insatiable thirst for SQL knowledge like me,...
2011-01-28
469 reads
The SQL Lunch and SQL University have combined forces. Come and watch, laugh, and learn.
#48-SSIS Tips&Tricks (Advanced SSIS)
Speaker: Josef Richberg
Add To...
2011-01-27
730 reads
#46-SQL Azure – Cloud Database Coolness
Don't miss this lunch.
Speaker: Scott Klein
Add To Outlook: Add To CalendarMeeting URL: https://www.livemeeting.com/cc/usergroups/join?id=3BGZJG&role=attend
Date and Time:1/26/2011 11:30:00 AM...
2011-01-25
718 reads
SQL Lunch - Building a Performance Point Dashboard
Don't forget to attend the SQLLunch tomorrow.
#35-Building your first PerformancePoint Dashboard in SharePoint 2010
Speaker:...
2011-01-18
1,222 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