SQLSaturday #3 Jacksonville Update
Just spoke with Brian this morning to get an event update for SQLSaturday #3:
122 attendees registered so far (event is...
2008-03-11
483 reads
Just spoke with Brian this morning to get an event update for SQLSaturday #3:
122 attendees registered so far (event is...
2008-03-11
483 reads
Friday I gave another iteration of our free Sucessful Technical Speaking class, upgraded some since the last version, and this was...
2008-03-10
548 reads
I'll be teaching a one day performance tuning seminar that targets beginning DBA's and developers that do data access, hoping to...
2008-03-09
769 reads
Oneof my tasks for our mini-Summit for Red Gate was to show the crew how I do the podcasts. There...
2008-03-08
961 reads
I was mildly amused by my friend Steve Jones blog post Finding a Direction about not really wanting to spend...
2008-03-06
537 reads
Mary Jo Foley reports that MS is signing up testers for a hosted SQL Server solution called SQL Server Data...
2008-03-06
727 reads
I'm not a bg fan of long meetings. I used to try and plan an hour a week staff meeting...
2008-03-04
886 reads
My friend Shawn Weisfeld is expecting more than 400 attendees at Orlando Code Camp this year. There will be at...
2008-03-04
341 reads
SQL Server 2008 brings with is a new set of features involving compression. At first I was assuming this was...
2008-03-03
1,836 reads
If you look at my blog roll Jeff Dunntemann is one of the ones recommend. Nothing about SQL Server there, but he...
2008-03-03
365 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