A Variable Length Random String
I was looking through some of the active threads on SQLServerCentral.com tonight, and I ran across one with some code...
2009-04-04
3,643 reads
I was looking through some of the active threads on SQLServerCentral.com tonight, and I ran across one with some code...
2009-04-04
3,643 reads
How am I doing on my New Year’s Resolutions for SQLServerCentral? I decided to make another update as Q1 has...
2009-04-03
676 reads
Steve Jones isn't usually the wild man of publishing, but on April 1st, a strangely
anarchic spirit breaks loose. Having...
2009-04-03
1,491 reads
I found How to Start a Conversation and Make Friends on the clearance rack at the local bookstore, but you...
2009-04-02
483 reads
Next Meeting - April 2, 2009
SPEAKER:Paul S. Waters
During Paul’s 16 years of working in IT, he has held a variety of...
2009-04-02
688 reads
If you have already submitted an abstract for the 2009 PASS Community Summit, or you are still thinking about it,...
2009-04-02
658 reads
If you’re available and are (or can be) in the Jacksonville FL area the first weekend of next month, check...
2009-04-02
755 reads
Just head from Greg Larsen yesterday that he just ran out of time to put things together. As I've mentioned...
2009-04-02
293 reads
I write an editorial about why I thought tape still had a place in backups. There were some interesting responses...
2009-04-02
794 reads
Further off topic than usual, but I ran across this as I browsed Springwise after a friend suggested it might...
2009-04-01
588 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