VMworld EMEA SQL Server Sessions
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
381 reads
This trip to Barcelona for the next VMworld EMEA conference next week will be my second trip to this conference...
2017-09-05
150 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
437 reads
Just a reminder – our SQL Servers sessions for this year’s VMworld 2017 conference in Las Vegas are starting to fill...
2017-08-23
131 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
300 reads
System administrators of the world, if a VM experiences a problem that takes down business-critical application, your job is to...
2017-08-21
117 reads
My company, Heraflux Technologies, is proud to announce a new ebook as part of our joint partnership with Pure Storage!...
2017-08-21
236 reads
One of the challenges with any SQL Server business continuity strategy is backing up your databases and logs on a...
2017-08-08
564 reads
In the last blog post, we added additional drives to the SQL Server machine so that we can scale out...
2017-08-16 (first published: 2017-07-27)
1,450 reads
One of the biggest differences with managing SQL Server Linux is with drive presentation. With Windows, we’d all scream if...
2017-08-09 (first published: 2017-07-24)
1,650 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