Notes From The January 2012 OPASS Meeting
OPASS meetings are held at Logans Roadhouse in Sanford now, I think the fourth location over the past couple years,...
2013-01-21
696 reads
OPASS meetings are held at Logans Roadhouse in Sanford now, I think the fourth location over the past couple years,...
2013-01-21
696 reads
I’ve had the Nest Thermostat on my wish list for a while. It has looked like an interesting bit of...
2013-01-06
998 reads
I bet if you think about it there are lots of times when people ask what you think about a...
2013-01-05
857 reads
Last year I purchased two Kindle Fires for the family to use. The UI could be just a little bit/slow...
2012-12-31
1,525 reads
Looking back at 2012 I feel like I’ve written less than I planned to, and in some ways done less...
2012-12-31
1,463 reads
One of the simpler pleasures in life is having an idea and putting it up for discussion. Not all ideas...
2012-12-23
902 reads
I wanted to save this link to the Microsoft Support Lifecycle page and thought I’d share as well. It’s a...
2012-12-22
1,175 reads
Steve Jones sent me a link to this post about Intelligence vs Effort months ago, since then I’ve looked at...
2012-12-22
787 reads
Back in April Steve Jones wrote up a disaster at work. Andy had one this week and wrote up the story too. Copy cat! Pretty soon everyone will be having a disaster and writing a story about it! Give these guys credit for letting you see what happens when it ALL goes bad. Disaster recovery is hard to sell and hard to do, reading the article might give you an idea that will save you some time and/or data one day.
2012-12-14 (first published: 2002-07-31)
10,689 reads
Last weekend I was in Tampa for SQLSaturday #168 and made sure to make some time for family. The most...
2012-11-26
909 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