Database administration complexity model
I have been working as a DBA for sometime now, and have been exposed to various database environments and with...
2008-11-07
1,182 reads
I have been working as a DBA for sometime now, and have been exposed to various database environments and with...
2008-11-07
1,182 reads
SQL Server Magazine Connections, which is part of the larger DevConnections conference, will be held November 10-13 in Las Vegas,...
2008-11-07
537 reads
Compared to many other IT professionals, DBAs, on average, make more money. To find out, let's check and find out.
According...
2008-11-07
3,034 reads
In addition to the reading list I'm still struggling to finish, I've always got other books partially started. Maybe that's...
2008-11-07
691 reads
Jason Massie called me out for a new SQL Quiz that was the diabolical idea of Chris Shaw.The gist is...
2008-11-07
1,390 reads
I feel that, ultimately, an Exception DBA is defined by his or her actions, so place yourself in the shoes...
2008-11-07
486 reads
Today I'll see how many bloggers I can interest/irritate by discussing a quick list of what I think works and doesn't...
2008-11-06
447 reads
I'm not sure that I'm wise, but I do feel old quite often. I noticed that after my talk at...
2008-11-06
456 reads
I attended the Business of Software a couple months ago and really enjoyed the conference. I wrote a series of...
2008-11-05
315 reads
DevTeach is offering 136 sessions, including 36 on SQL Server, 17 on Agile Development, 17 on Software Architecture, and 57...
2008-11-05
388 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