My first blog post -- starting small
I've been hanging around the SQL PASS Summit this week and came to a realization, I do know something...
I don't...
2008-11-20
443 reads
I've been hanging around the SQL PASS Summit this week and came to a realization, I do know something...
I don't...
2008-11-20
443 reads
Went to the intro and keynote yesterday, even though I know better. They weren't bad, they just weren't great. I...
2008-11-20
660 reads
I couldn't muster the enthusiasm for a keynote today, so I went for a walk, stopping first for a doughnut...
2008-11-20
735 reads
It’s been a great week at PASS thus far and many others have written on their experiences so I’ll do...
2008-11-20
577 reads
The morning keynote opening was good. We had video of the conference playing here and there, the election candidate positions...
2008-11-20
1,069 reads
He's the manager for BI, the General Manager, and he's here to talk about the challenge and promise of Pervasive...
2008-11-20
1,189 reads
It was really Andy Warren's presentation, but he usually ropes me in to add a different perspective on the various...
2008-11-19
858 reads
I spent most of yesterday in the PASS volunteer training. It's not really training, more of a gathering of volunteers...
2008-11-19
913 reads
A film clip opening from MS, quotes and short sound bites from a variety of people from he SQL Server...
2008-11-19
1,764 reads
With the dimming of lights, the drone of "Born to be Wild" from Steppenwolf, and an opening film slip of...
2008-11-19
944 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...
hi i was hoping for a more elegant way of setting a pkg level...
I have a plan which in sys.query_store_plan shows: Last_compile_start_time of 2026-04-23 00:13:00.7670000 +00:00 Last_execution_time...
Fisher Phillips is looking for a Financial Systems Administrator to help support and improve our financial...
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 n;See possible answers