Presentation Notes from SQL Saturday
For those who were in my session on SSIS Scripting at SQL Saturday Tampa last weekend, I have posted the...
2009-01-26
1,363 reads
For those who were in my session on SSIS Scripting at SQL Saturday Tampa last weekend, I have posted the...
2009-01-26
1,363 reads
SQLSaturday #10 was held January 24, 2008 in Tampa at the Kforce Building. Attendance was about 175, down slightly from...
2009-01-25
1,305 reads
I’m sitting in the Tampa airport waiting for a flight back home from SQL Saturday 10 in Tampa. There was...
2009-01-25
1,677 reads
Anyone attending TechEd 2009 can submit a Birds of a Feather (BOF) session proposal. These sessions are open discussion topics...
2009-01-23
1,441 reads
The book is actually Big Brown: The Untold Story of UPS and it was written by a retired UPSer that...
2009-01-23
983 reads
I have been admonished in the past for the use of this code which makes as many
substitutions as you like...
2009-01-23
1,158 reads
I saw Paul Kenny of Ocean Learningspeak about sales least year at the Business of Software Conference. I thought he...
2009-01-22
903 reads
This question comes up a lot: how do I give read-only access to job status to a group of people?...
2009-01-22
4,052 reads
Another story from a previous job. I joined the company in August, in October they started prepping for Halloween - it...
2009-01-22
932 reads
Right now it looks like I'll be putting a training session on for my local ISACA chapter on SQL Server...
2009-01-22
1,100 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