VMware vCenter Web Client IP redirect solution
If you are working on a VMware vCenter Server v5.5 in an environment that has multiple segregated VLANs designed to...
2014-09-30
1,492 reads
If you are working on a VMware vCenter Server v5.5 in an environment that has multiple segregated VLANs designed to...
2014-09-30
1,492 reads
This past week I was fortunate enough to attend a three-day special session at VMware Corporation’s corporate campus in Palo Alto,...
2014-09-17
1,025 reads
A few weeks ago I was fortunate enough to attend VMware’s VMworld 2014 conference in San Francisco, CA. The show...
2014-09-10
485 reads
My summer event hiatus is coming to a close, and we’re now back into the conference and event season! I’ve...
2014-09-02
739 reads
Our company, Heraflux Technologies, celebrated its first birthday today on September 1st. A very sincere thank you goes to all...
2014-09-02
510 reads
Can you believe that this year’s VMworld conference is just around the corner? It’s next week – August 24 – 28 – at...
2014-08-20
626 reads
Next Wednesday, August 20th, at 7:30pm Central I will be presenting a webinar for the Professional VMware #vBrownBag entitled “SQL...
2014-08-13
610 reads
I’m proud to announce that yesterday the first installment of my new Stairway series at SQL Server Central has been...
2014-08-07
1,029 reads
Today I presented a fun session for the SQL PASSPerformance Virtual Chapter’s “Summer Performance Palooza 2014” entitled “Infrastructure Tuning for...
2014-07-24
492 reads
If it were not for the SQL Server community, I would not be where I am at with my career...
2014-07-03
740 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