Without SQL Server
I've been in Seattle since Friday afternoon and I've pretty much ignored SQL Server. And it's been nice!
I came up...
2008-11-16
639 reads
I've been in Seattle since Friday afternoon and I've pretty much ignored SQL Server. And it's been nice!
I came up...
2008-11-16
639 reads
Illiad has been running a series on his UserFriendly comic strip about veterans. It started on Monday and has continued...
2008-11-14
718 reads
One of the first things I tried to do when logon triggers came out with Service Pack 2 of SQL...
2008-11-14
2,587 reads
Looks like I'm still in the game! Just received word from Kevin Kline (Past PASS President). Here are the candidates:
Andy...
2008-11-14
1,312 reads
In less than two days I'll be in Seattle for my 6th PASS Summit. I am trying to put all the...
2008-11-14
462 reads
We know for SQL Server default instance, if TCP/IP protocol is used, the default TCP port number is always 1433....
2008-11-13
1,390 reads
I'm using a Goggle blog for another project and overall it works fine, no complaints. I've also switched to using...
2008-11-13
577 reads
I've been asked by a few folks whether or not I'm going to the PASS Summit. The answer is I'm...
2008-11-13
598 reads
Next week is the PASS Summit for 2008 in Seattle and I'm trying to close down the work I need...
2008-11-12
671 reads
We had our meeting on November 11, 2008, with 27 people attending. Our featured speaker was Jessica Moss, SQL MVP...
2008-11-12
538 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