Email: Getting My Attention, The Wrong Way
I was scrolling through my professional email as my wife drove me in to work (my car is being looked...
2009-12-11
652 reads
I was scrolling through my professional email as my wife drove me in to work (my car is being looked...
2009-12-11
652 reads
With the explosion of Netbooks, it has become important to find new ways to load operating systems. I recently picked...
2009-12-11
315 reads
Thanks to everyone who attended my TechNet Thrive! and Nashville SQL Server User Group presentations this week! I hope it...
2009-12-11
414 reads
Assuming no major problems at work, I’m heading to the South side of town the afternoon of Dec 14, 2009...
2009-12-11
384 reads
Often when designing a report you may find a need to concatenate values in an expression. For example, you want...
2009-12-11
1,388 reads
This is an answer to a forum question on www.bidn.com
Running SSIS on a 64-bit machine has several caveat that developers...
2009-12-11
4,748 reads
Running SSIS on a 64-bit machine has several caveat that developers need to be aware of. Tasks like the ActiveX...
2009-12-11
516 reads
Here is a collection of five stored procedures that are very useful for monitoring the overall health of a SQL...
2009-12-11
1,149 reads
SQL Lunch # 5 – Looping Logic in SSIS
Speaker:Tim Mitchell
Topic:Looping Logic in SSIS
Meeting URL:JOIN MEETING
ADD TO OUTLOOK CALENDAR
Description:
Software developers have long taken...
2009-12-11
999 reads
In part one of this post I showed how you can use a report to run SQL Server Agent Jobs by...
2009-12-11
1,879 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