SQLSaturday #6 - Canceled
Just heard back from Allen White, due to his schedule and minimal success creating a true team effort plans for...
2008-11-12
544 reads
Just heard back from Allen White, due to his schedule and minimal success creating a true team effort plans for...
2008-11-12
544 reads
I'd seen Jason Massie's post on Facebook of this SQL Quiz, but when I found Brian Kelley's post, I decided...
2008-11-11
791 reads
I don't typically do Internet chain mail, but Brian Kelley mentioned me in his post on his two mistakes and...
2008-11-11
738 reads
I will be attending the PASS Community Summit in Seattle, November 18-21, and will be making two presentations:
DBA 101: Best...
2008-11-10
399 reads
As most of you know, PASS (the Professional Association for SQL Server) is an independent, not-for-profit association, dedicated to supporting,...
2008-11-10
560 reads
I'm going to share what I can from the interview, but I'm going to have to be a little less...
2008-11-10
378 reads
When I first got my new laptop, I thought it was very cool. It included a fingerprint reader below the...
2008-11-10
364 reads
User groups provide so many benefits for those looking to get ahead in their career. User Groups share a common...
2008-11-10
505 reads
It's funny that many employees see moving into management as a way to stop actually doing work. In practice - if...
2008-11-09
244 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,181 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