NodeXL – Accessible Network Graph Analysis, part 2
This is the second blog post in the series dedicated to the Network Graph Analysis Tool – NodeXL.
If you are interested,...
2014-05-26
288 reads
This is the second blog post in the series dedicated to the Network Graph Analysis Tool – NodeXL.
If you are interested,...
2014-05-26
288 reads
Data Quality Services in SQL Server is a component that is based around the concept of knowledge-driven quality.
Here comes a...
2014-05-26
198 reads
This is the first blog post in a series on one of the most awesome free analytical tools that is...
2014-05-25
254 reads
It is with a great pleasure that I am happy to share that today I have received news of being...
2014-05-22
153 reads
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
This post is a continuation of the SSIS...
2014-05-22
424 reads
Update: There is a new 1.7 Version of Google Analytics Source for SSIS
In the modern age of the technology, almost...
2014-05-20
3,379 reads
These are my impressions from the PASS Business Analytics Conference 2014 in San José, California.
The first part of this series...
2014-05-19
336 reads
PASS Business Analytics Conference is not a new kid on the block anymore – happening for the second year in a...
2014-05-18
251 reads
The latest book that I finished reading was The Tipping Point, written by the Malcolm Gladwell. I would recommend this...
2014-05-16
185 reads
Every IT person is more than introduced to the problems of integration – in the ideal perfect world we could join...
2014-05-02
199 reads
By gbargsley
It's 2 AM. Your phone is going off. Users can't connect to the application,...
By Steve Jones
I discovered a procedure recently that I wasn’t aware of: sp_sequence_get_range. This post looks...
By Arun Sirpal
After a year away getting to grips with AI and its application across the...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
Employee owned company, been around for over 50 years. Hybrid opportunity, looking folks in Pacific...
i have huge table with lot of data and is also wide. i took...
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