Hope to See You at SQL Connections in Las Vegas
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
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
314 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
I've written my first tip for MSSQLTips.com:
How to setup and use a SQL Server alias
It's a pretty simple thing to...
2008-11-05
901 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
Every organization I talk to has the same problem dressed up in different clothes....
By DataOnWheels
I am delighted to host this month’s T-SQL Tuesday invitation. If you are new...
Comments posted to this topic are about the item The day-to-day pressures of a...
Hello all, I’m looking for advice on how to derive a daily snapshot table...
We need to replace our Windows server running SQL 2017. Any reason not to...
I have some data in a table that looks like this:
BeerID BeerName brewer beerdescription 1 Becks Interbrew Beck's is a German-style pilsner beer 2 Fat Tire New Belgium Toasty malt, gentle sweetness, flash of fresh hop bitterness. 3 Mac n Jacks Mac & Jack's Brewery This beer erupts with a floral, hoppy taste 4 Alaskan Amber Alaskan Brewing Alaskan Brewing Amber Ale is an "alt" style beer 8 Kirin Kirin Brewing Kirin Ichiban is a Lager-type beerIf I run this, what is returned?
select t1.[key]
from openjson((select t.* FROM Beer AS t for json path)) t1 See possible answers