Speaking at PASS Virtualization Virtual Chapter on Wednesday
This Wednesday I will be presenting for the PASS Virtualization Virtual Chapter at 11AM CST on one of my favorite...
2013-02-13
672 reads
This Wednesday I will be presenting for the PASS Virtualization Virtual Chapter at 11AM CST on one of my favorite...
2013-02-13
672 reads
I have a new blog post up at HouseOfBrick.com on why you should understand your workload performance characteristics. When you...
2013-02-11
939 reads
I doubt you noticed but I took a few weeks to relax, so no tech for me. Last week my...
2013-02-11
891 reads
I am pleased to announce that I am speaking at VMware’s Partner Exchange for their CI1464 – Virtualizing Microsoft SQL Server...
2013-01-26
793 reads
At the House of BrickSolutions Architect blog, I have a new post up on the path to full SQL Server...
2013-01-23
760 reads
Yesterday I was featured as a guest on the VMware.com vFabric blog to introduce a whitepaper that I authored on...
2013-01-22
1,009 reads
Recently, one of my favorite customers asked me some very thought-provoking questions about using database partitioning to move transactional data around. Their...
2013-01-18 (first published: 2013-01-14)
14,939 reads
Paul Grevink has released a great study guide for the VMware VCAP5-DCA exam. It’s available here! I’ll be using it...
2013-01-01
720 reads
What a wild year this has been. There have been ups and downs, but the ups have been incredible. To...
2013-01-01
931 reads
I just discovered a few posts calling out a bug in the vSphere 5.1 vCenter performance statistic rollup procedure for...
2012-12-31
1,501 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