Using the Error Output of the Derived Column
The other day I was building a simple data import package when I ran into a common situation; invalid conversions in a Derived Column. The conversion was taking an...
2012-02-01
12 reads
The other day I was building a simple data import package when I ran into a common situation; invalid conversions in a Derived Column. The conversion was taking an...
2012-02-01
12 reads
I've been a bit busy for the last few weeks, with the holidays, PASS, working on SSIS (more to come),...
2011-12-05
394 reads
This is my first time here at PASS and I got a swept away in all the excitement. I tweeted...
2011-10-13
423 reads
Welcome to the third and last day of the Named Pipes seminar. Today we will get into the consumer portion...
2011-09-28
539 reads
Yesterday, I set up the premise for using named pipes in SSIS. Today we are going to get into the...
2011-09-27
679 reads
There comes a time when you look at how something is being done and say, "Does it have to be...
2011-09-26
591 reads
I've been doing quite a bit of work for my upcoming SQL University class next and in it is a...
2011-09-23
768 reads
I've been doing quite a bit of work for my upcoming SQL University class
next and in it is a Script Component. These are the ones that live inside
of...
2011-09-23
5 reads
I've been doing quite a bit of work for my upcoming SQL University class next and in it is a Script Component. These are the ones that live inside...
2011-09-23
7 reads
While designing a package last week with our consultant, Latha Chandri (twitter), I came across a need to call a...
2011-06-30
8,762 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