Thoughts on .Net Reflector Being Acquired by Red Gate
This is an unpaid/unsolicited comment about a product now owned by Red Gate Software. Purely my opinions, and I'll try...
2008-10-29
1,602 reads
This is an unpaid/unsolicited comment about a product now owned by Red Gate Software. Purely my opinions, and I'll try...
2008-10-29
1,602 reads
Only a small one, but I appreciate every one I get. Not often that I get to leave the site...
2008-10-28
1,472 reads
Over the years Andy Warren, Brian Knight, and I have talked about PASS quite a bit. It hasn't always been...
2008-10-28
1,433 reads
For the past few years I've been using Frontpage 2003 for basic HTML work, usually to write content for SQLServerCentral....
2008-10-28
1,351 reads
Here are the two presentations from last week. On Thursday I went to Miramar, Florida and presented Fortress SQL Server....
2008-10-27
1,565 reads
Yesterday I posted an overview of the event, today I want to go over some areas where we excelled, and...
2008-10-27
1,330 reads
This weekend I spoke at Seminole Community College with a session on Reporting Services 2008. If your interested you can...
2008-10-27
1,418 reads
I've always been a little bit of a strong DBA. I try to get along and work with people, being...
2008-10-26
1,600 reads
The whole idea of having free events, bringing learning to people locally wasn't something that I was thrilled with. It's...
2008-10-26
1,436 reads
By any measure the event was a success. We had a solid 275 attendees this year, up about 50 from last...
2008-10-25
1,500 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