PASS Summit 2017 Precon – Virtual SQL Servers: Right to Ludicrous Speed
PASS has continues to ramp up the plans for the PASS Summit in Seattle this October, and my precon session, “Virtual...
2017-09-15
360 reads
PASS has continues to ramp up the plans for the PASS Summit in Seattle this October, and my precon session, “Virtual...
2017-09-15
360 reads
PASS has continues to ramp up the plans for the PASS Summit in Seattle this October, and my precon session, “Virtual...
2017-09-15
165 reads
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2017-09-07
404 reads
This is just a quick reminder to encourage you to attend my next round of all-day precon training session at the...
2017-09-07
156 reads
Greetings everyone! We had so many people stay after our SQL Server on VMware sessions at VMworld USA to ask...
2017-09-07
368 reads
Greetings everyone! We had so many people stay after our SQL Server on VMware sessions at VMworld USA to ask...
2017-09-07
160 reads
I just realized that our two SQL Server on VMware sessions that I co-presented on Tuesday at VMworld USA, both of which made the top...
2017-09-14 (first published: 2017-09-06)
1,326 reads
I just realized that our two SQL Server on VMware sessions that I co-presented on Tuesday at VMworld USA, both of which made the top...
2017-09-06
141 reads
I’m prepping for VMworld EMEA in Barcelona next week and will do a wrap up post for both events afterwards,...
2017-09-05
297 reads
I’m prepping for VMworld EMEA in Barcelona next week and will do a wrap up post for both events afterwards,...
2017-09-05
129 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