Special Events at PASS Summit
Besides giving two Community Session presentations (here and here), next week, I will be involved in the Birds of a...
2009-10-26
608 reads
Besides giving two Community Session presentations (here and here), next week, I will be involved in the Birds of a...
2009-10-26
608 reads
Here are the slide decks and code samples from my sessions at SQL Saturday #21 Orlando on 10\17. I've also...
2009-10-26
407 reads
Saturday, 10\17, marked the third year for SQL Saturday here in Orlando and each year it gets bigger and better....
2009-10-26
790 reads
Well, it's a wrap! Saturday has come and gone, but memories will go on. It was great to see so...
2009-10-26
752 reads
I posted some thoughts on business cards awhile back, had used up the ones I had and was time to...
2009-10-25
678 reads
I presented Social and Not So Social Networking for the DBA. Of the attendees, 16 submitted an eval. Here are...
2009-10-25
554 reads
If you have a database application that is running slowly, or is straining the server, what do you do? After...
2009-10-25
3,144 reads
Welcome back to class, folks, here at SQL University. This week we're going to take a look at the basics...
2009-10-25
10,871 reads
I first met Simon Galbraith, one of the co-owners of Red Gate Software at PASS in 2002, when they had...
2009-10-24
408 reads
This year I was really looking forward to going to the PASS Summit. It's worth every penny in the knowledge you'll...
2009-10-23
1,666 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