Installing Microsoft Hyper-V 2012 on VMware ESXi 5.1
For a weekend project, I’m installing Hyper-V 2012 in my home lab. I was having troubles getting Hyper-V installed on...
2013-07-06
888 reads
For a weekend project, I’m installing Hyper-V 2012 in my home lab. I was having troubles getting Hyper-V installed on...
2013-07-06
888 reads
What an interesting week this has been. On Monday Microsoft and Oracle announced a partnership that rocked the cloud world....
2013-06-26
1,352 reads
Sweet! SQL Server 2014 CTP1 is now available for download at Microsoft.com! Get it while it is hot, and start...
2013-06-26
745 reads
A while back I wrote a blog post at the House of Brick technical blog that details talking points and...
2013-06-03
707 reads
WOW! I have not received the official confirmation yet, but last night John Troyer posted a new entry on the...
2013-05-29
770 reads
WOW! I was selected to present at the SQL PASS Summit 2013 in Charlotte, NC. in October! All I can...
2013-05-23
565 reads
This past Saturday I was fortunate enough to present a session at the largest SQL Saturday EVER in Alpharetta GA....
2013-05-21
502 reads
A while back Kendal Van Dyke (b | l | t) asked me a great question regarding the ideal VMware vSphere networking...
2013-05-16
1,518 reads
WOW! SQL Saturday Atlanta this year is turning into one of the largest SQL Saturdays ever! I’m absolutely honored and pumped to...
2013-05-03
652 reads
Yesterday I had the opportunity to speak at the first ever SQL Saturday Fargo! Jason Strate (b | l | t) and...
2013-04-28
782 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