Another free tool for SQL Server...
Let me show you another free tool for SQL Server that is very usefull and thanks from the companies that...
2010-02-05
1,130 reads
Let me show you another free tool for SQL Server that is very usefull and thanks from the companies that...
2010-02-05
1,130 reads
As I mentioned earlier in the week I had promised Andy an interview, we finished it up yesterday and the...
2010-02-05
350 reads
Today I ran across Paul Randal’s latest post showing how to find open transactions and such. This is a nice...
2010-02-05
530 reads
A couple weeks back I asked for reading suggestions, and I got a bunch! Here’s the list so far:
Wizard’s First...
2010-02-05
431 reads
I was really excited when my PASS DVDs arrived last week. I had purchased the DVDs (or maybe CDs) back...
2010-02-05
949 reads
I’ll be speaking in Portland, OR and Tumwater, WA the week of February 8th, 2010. The details, and the session...
2010-02-05
375 reads
It is a good news for developers! Microsoft published the Training Kit for SQL Server 2008 R2.
The content of...
2010-02-05
591 reads
Reporting Services has many expressions that can manipulate date fields. These expressions can be used just about anywhere in SSRS...
2010-02-05
5,870 reads
I’ve heard imitation is a form of flattery, and I guess that’s true. Today I got an up close and...
2010-02-05
375 reads
I had a little bit of excitement with one of my production servers couple of days ago, that I thought...
2010-02-04
3,113 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