Free Stuff and a SQL Server Standard Update
Great news. We’ve managed to get one article all the way through the process. We’ll have our first publication out...
2009-10-02
717 reads
Great news. We’ve managed to get one article all the way through the process. We’ll have our first publication out...
2009-10-02
717 reads
Over the past few months I have been upgrading most of my SQL Server Reporting Services (SSRS) 2005 installs to...
2009-10-02
572 reads
It was nice to work through my email and find a bit of positive news instead of more work! I’m...
2009-10-02
391 reads
As the first stop of my five city speaking tour of Australia, I spoke at the Perth .NET Users Group...
2009-10-02
478 reads
I've written about this before, but probably not as a specific subject or blog post. Trading some comments with a...
2009-10-02
807 reads
EVERY ATTENDEE IN THE MEETING WILL BE ENTERED IN A DRAWING FOR A FREEfull license of SQL Sentry Performance Advisor...
2009-10-02
1,016 reads
The "SQL Server MVP Deep Dives" book that I wrote two chapters for is up for pre-order. This will be...
2009-10-02
617 reads
Hi, ALL. Sorry I've been light on content this week. I've been battling a cold, and working on some excellent...
2009-10-02
467 reads
If you are in the Dallas/Ft. Worth area and are interested in SQL Server developer training, there is an opportunity...
2009-10-02
640 reads
In this case making money is about counterfeiting. The Art of Making Money: The Story of a Master Counterfeiter ($18)...
2009-10-01
391 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
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...
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