Taking the Hyper-V Plunge
Or at least I’m getting ready to take the plunge into using Hyper-V. In my machine dilemma, I decided to...
2009-05-14
1,659 reads
Or at least I’m getting ready to take the plunge into using Hyper-V. In my machine dilemma, I decided to...
2009-05-14
1,659 reads
Yesterday, in Prishtina - capital city of Kosova, has been held the TechUpdate Seminar 2009 from Microsoft, organized from the Microsoft...
2009-05-14
1,020 reads
I've been reading What Got You Here Won't Get You There by Marshall Goldsmith over the past couple months, and...
2009-05-13
757 reads
Question: What mechanism allows SQL Server 2008 to commit transactions on the mirror faster than SQL Server 2005?
This question was...
2009-05-13
1,657 reads
Not MVP logo items, as I’m not sure if I really want to wear those. I was somewhat uncomfortable last...
2009-05-13
955 reads
Our most recent meeting was May 12, 2009, and we had 23 attendees. We started off the evening with news...
2009-05-13
581 reads
A better explanation from the SQLCAT team in this blog entry. I’d still like to see more, but this makes...
2009-05-13
657 reads
OK….so I’m in the middle of a very interesting Effective Dating project…basically we’re dealing with some tables that only store...
2009-05-13
1,621 reads
I was watching the TechEd 2009 keynote the other day and there was a lot of time spent on Windows...
2009-05-13
432 reads
I'm still learning and experimenting on the networking side, thought I'd share a few things I've seen or tried lately....
2009-05-12
625 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