SQLSaturday Orlando Planning Meeting on May 23, 2009
We'll be meeting at Chipotle in Altamonte Springs on May 23, 2009 at 11:30 am to discuss plans for the...
2009-05-19
557 reads
We'll be meeting at Chipotle in Altamonte Springs on May 23, 2009 at 11:30 am to discuss plans for the...
2009-05-19
557 reads
For the past couple years I've been using a Targus (I think the model 300 right now) and they've been...
2009-05-18
892 reads
I stopped by Compusa on the way home to pick up a package of blank DVD's and did the 10...
2009-05-18
783 reads
I went over last night to do a presentation to the group managed by Bonnie and Lynn. Had 11 in...
2009-05-15
639 reads
I've been reading What Got You Here Won't Get You There by Marshall Goldsmith over the past couple months, and...
2009-05-13
757 reads
Our most recent meeting was May 12, 2009, and we had 23 attendees. We started off the evening with news...
2009-05-13
583 reads
I'm still learning and experimenting on the networking side, thought I'd share a few things I've seen or tried lately....
2009-05-12
625 reads
It's been a slower pace since the last update. Grant and I are working on the publication process for content...
2009-05-12
750 reads
SQLServerCentral had a press release today about attending the Summit and the networking opportunities, something that I've been blogging about...
2009-05-12
878 reads
As I've mentioned in earlier posts (Part 1, Part 2, Part 3) I've engaged speaking and networking Don Gabor to help me build my skills. I recently had my second coaching session and wanted to share more of what I've learned so far.
2009-05-11
1,479 reads
By Vinay Thakur
These days everything is changing to AI World, IT roles are getting changed and...
I’m doing a small series on indexing basics for SQL Server, and on May...
PlanTrace: Stop Reading Redshift EXPLAIN Plans. Start Seeing Them Introducing PlanTrace — a free, browser-based...
We suffered a SPAM attack from May 1-6, which unfortunately corresponded with time off...
Hi to all We have situation at a client where someone is illegally changing...
Hi to all We have situation at a client where someone is illegally changing...
I have this data in a table called dbo.NFLTeams
TeamID TeamName City YearEstablished ------ -------- ---- --------------- 1 Cowboys Dallas 1960 2 Eagles Philadelphia 1933 3 Packers Green Bay 1919 4 Chiefs Kansas City 1960 5 49ers San Francisco 1946 6 Broncos Denver 1960 7 Seahawks Seattle 1976 8 Patriots New England 1960If I run this code, how many rows are returned?
SELECT TOP 2
json_objectagg('Team' : TeamName)
FROM dbo.NFLTeams;
See possible answers