Don't Make Me Work, VIA Rail
I got an email the other day from Canada's VIA Rail, advertising "Discover Canada by Train" and the chance to...
2009-09-10
884 reads
I got an email the other day from Canada's VIA Rail, advertising "Discover Canada by Train" and the chance to...
2009-09-10
884 reads
My friend Don Gabor is providing us with some tips on networking as related to both PASS and the PASS...
2009-09-10
217 reads
I was sitting going through some of my materials, scripts, emails and news feeds to find a worthy topic for...
2009-09-10
1,328 reads
We have been working hard trying to get speakers to complete the year for our SQL Lunch schedule. I am...
2009-09-10
702 reads
I see a lot of questions on the forums about updating existing data in SSIS. When the update is dynamic...
2009-09-10
22,360 reads
This question:
Created script to send mails using sp_send_dbmail- working like a charm.
Now searching for a way to get...
2009-09-10
937 reads
Even the President thinks so! In his talk yesterday, he warned kids about Facebook, and being careful what they should...
2009-09-09
1,056 reads
Have you ever wondered where to go to get good information that will help you in your day to day...
2009-09-09
453 reads
Hey there Gang !
Most of you probably know Jamie Thompson has move his blog over to SQLBlog.com. This is worth noting...
2009-09-09
418 reads
If you missed out on some of the 24 free, live sessions that made up the 24 Hours of PASS,...
2009-09-09
493 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