Tech Review
I got asked by someone to technically review their SQL Server 2005
book, so I'm betting that there will be lots...
2005-08-05
1,452 reads
I got asked by someone to technically review their SQL Server 2005
book, so I'm betting that there will be lots...
2005-08-05
1,452 reads
Interesting post by Andy Leonard.
I'll add in my two cents that you should seek happiness and
satisfaction in your job. I...
2005-07-29
1,519 reads
for a week. I'm leaving for vacation and leaving SQLServerCentral.com
in the capable hands of Andy. He'll be sending out some...
2005-07-15
1,388 reads
If you are interested in helping to organize or be a part of an
official Professional Association of SQL Server chapter...
2005-07-15
1,401 reads
A couple of days ago I noticed that the index rebuild for the search
engine was failing at night. In line...
2005-07-14
1,479 reads
Apologies, a minor reboot of the db server this morning. Somewhere we're leaking memory, more details later, so I had...
2005-07-14
1,492 reads
When I started working at JD Edwards, I was a corporate administrator
on the windows network. Since the DBAs were a...
2005-07-12
1,531 reads
As Phill posts in his blog, we've had a couple interesting threads in the forums where the respect and tolerance...
2005-07-11
1,440 reads
I got a note that someone thought they shouldn't have to register on
the site and get a newsletter to read...
2005-07-07
1,381 reads
When I wrote the editorial for today on A Humbling Experience,
I was sure that it would generate a bunch of...
2005-07-07
1,499 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