Virtualization Virtual Chapter Webinar – Open Q&A
On December 10 at 11am CST I will be presenting the next PASSVirtualization Virtual Chapter monthly webinar, where you can ask...
2014-11-28
940 reads
On December 10 at 11am CST I will be presenting the next PASSVirtualization Virtual Chapter monthly webinar, where you can ask...
2014-11-28
940 reads
I don’t care what technology or technologies you enjoy using in your daily job. If there’s an enthusiastic community behind...
2014-11-18
704 reads
This past week of conferences was simply amazing. It was the best week of my career. Period. Now that I’m...
2014-11-14
723 reads
Hi everyone! If you’d like to join us in the second installation of a high-speed tradition after the SQL PASS...
2014-11-07
409 reads
Today I presented my SQL Server virtual machine “right-sizing” session at the SQL PASS 2014 Summit to a fantastic audience....
2014-11-06
566 reads
My session today at the SQL PASS Summit 2014 entitled “Right Sizing Your SQL Server Virtual Machine” is going to...
2014-11-05
408 reads
I can hardly believe how fast this year has flown by. My favorite SQL Server conference of the year, the...
2014-10-29
1,038 reads
Coming soon is the SQL Saturday #332 in Minneapolis, MN on October 25th, with my preconference training session on Friday, October 24. I am really looking forward to...
2014-10-13
1,154 reads
Today I presented the final ramp up session entitled “Virtualization for SQL Server DBAs 499” for the SQL PASS Virtualization...
2014-10-08
705 reads
We hope you have enjoyed your summer and are ready to get back to learning all things SQL Server related! We...
2014-10-04
543 reads
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...
By alevyinroc
Ten years (and a couple jobs) ago, I wrote about naming default constraints to...
Comments posted to this topic are about the item The day-to-day pressures of a...
Comments posted to this topic are about the item Using OPENJSON
Comments posted to this topic are about the item Data Modeling with dbt for...
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