PASS Interview With Don Gabor
Just in case you don’t read the Connector today, here’s a link to an interview that PASS HQ did with...
2009-07-28
1,536 reads
Just in case you don’t read the Connector today, here’s a link to an interview that PASS HQ did with...
2009-07-28
1,536 reads
You may have noticed that when you create a login on a SQL server that's mapped to a Windows domain...
2009-07-28
654 reads
I had hoped to announce this much sooner, sometimes the wheels turn slowly. But turn they do! We’re back at...
2009-07-28
1,450 reads
Andy Warren and crew at OPASS have announced that SQLSaturday 21 – Orlando will be held at Seminole Community College, 100...
2009-07-28
1,301 reads
Steve Jones sent me this link on time management that discusses two things – getting ‘ambushed’ at the start of the...
2009-07-28
1,610 reads
UPDATE: This post is incorrect. Adam nailed it in the comments. I explain my mistake here.
A question came up over...
2009-07-28
1,875 reads
… and by government data, I mean the mountain of data recently made available by the G-Men on Data.gov. This site...
2009-07-28
1,343 reads
We (Brian, Steve, and I) provided hosting for SQL chapters going way back…maybe 2002 or 2003, on behalf of PASS....
2009-07-27
534 reads
I saw an article from Certification Magazine recently (via Trainsignal on twitter)
with that title. It compared the completion of certification...
2009-07-27
1,947 reads
Can't make the PASS summit? Or maybe you're going but looking for something whet your appetite between now and November....
2009-07-27
754 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