New Tool: SQL Object Level Recovery Native ...by Red Gate
As an official ‘Friend of Red Gate’ , I occassionally get direct updates and announcements from the company. They have an...
2009-09-24
934 reads
As an official ‘Friend of Red Gate’ , I occassionally get direct updates and announcements from the company. They have an...
2009-09-24
934 reads
I presented last night at the Cape Cod .NET User’s Group. What a great bunch of people. About 20 people...
2009-09-24
715 reads
Ran across The Inner Game of Stress: Outsmart Life's Challenges and Fulfill Your Potential ($16 @ Amazon) at the the library,...
2009-09-24
682 reads
I was reading the most recent issue of TechNet from Microsoft one morning and flipped through the column on SQL...
2009-09-24
1,394 reads
I saw this one on a forum recently and it’s a fun question to look into.
When running CheckDB on an...
2009-09-24
610 reads
One of the really handy improvevements in Powershell V2 is around creating help information for your script users. I often find myself having...
2009-09-23
743 reads
Greg Larsen, a SQL Server DBA, and the owner of the website SQLServerExamples.com, has released a free plug-in for SSMS...
2009-09-23
4,152 reads
Greg Larsen, a SQL Server DBA, and the owner of the website SQLServerExamples.com, has released a free plug-in for SSMS...
2009-09-23
832 reads
We have a couple of boxes at a local Denver co-location facility for the training business, SQL Share. Our firewall...
2009-09-23
911 reads
It’s time for the MVP Profile of the Week!
You’ve probably seen his work, as he’s been busy producing content for...
2009-09-23
1,403 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