Reminder: Orlando SQL Server User Group Meeting is March 11, 2009
Our next oPASS/Orlando user group meeting is coming up soon on March 11, 2009, and as usual is held at...
2009-03-02
328 reads
Our next oPASS/Orlando user group meeting is coming up soon on March 11, 2009, and as usual is held at...
2009-03-02
328 reads
If you've read my blog over the past year and a half you know that I've been heavily involved in...
2009-03-01
283 reads
If you haven't visited yet, you definitely want to read Linchi's blog - it's packed full of on topic posts about...
2009-02-26
1,806 reads
Most of us aren't good decision makers. We make decisions based on emotion rather than facts, and for many decisions...
2009-02-25
2,280 reads
I've scheduled another iteration of my Technical Speaking Seminar for March 14, 2009 in Orlando. It's free, and I'm hosting...
2009-02-24
1,477 reads
It's been pretty busy since my last post. Just in one week I had at least 12 hours devoted to...
2009-02-23
713 reads
Stuart says that as of Feb 20 registration is at 150 with a cap of 200, and plenty of speakers...
2009-02-22
672 reads
Announced in the past week or so, Microsoft has released an update to Codezone that expands the focus beyond just...
2009-02-19
726 reads
You can read the previous posts here. To finish up (I think), I want to share a networking technique I...
2009-02-18
712 reads
Many of us in IT are competitive, maybe slightly more so than in other professions. Competition adds a little spice...
2009-02-17
1,499 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...
Hello all, I’m looking for advice on how to derive a daily snapshot table...
We need to replace our Windows server running SQL 2017. Any reason not to...
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