Share Your OPML
Dave Winer announced bringing back Share Your OPML
on Friday. I wasn't keeping up with many RSS feeds back when the
original...
2006-05-08
1,554 reads
Dave Winer announced bringing back Share Your OPML
on Friday. I wasn't keeping up with many RSS feeds back when the
original...
2006-05-08
1,554 reads
If you were putting together a security awareness training program for
developers, what aspects of SQL Server security would you include?...
2006-05-06
1,844 reads
As of right now, it looks like I'm going to TechEd 2006 in Boston. If you're going to be there...
2006-05-05
1,459 reads
This article appeared just recently on MSDN:
Scaling Out SQL Server 2005
It's a relatively high level document which covers how to...
2006-05-05
1,551 reads
The SysInternals licensing has been updated on the SysInternals website.
The new licensing is something you'll want to take a look...
2006-05-05
1,473 reads
It appears that PromptSQL has been purchased by Red Gate Software. I
haven't seen a news announcement about it, and there's...
2006-05-04
1,530 reads
SQL Server 2005 Books Online has been updated for SP1. The newest
version is labeled SQL Server 2005 Books Online (April...
2006-05-04
1,527 reads
Unfortunatlely I don't have the time to spend on a great post right now, but this has been on my...
2006-05-02
695 reads
I'm catching back up on the TechNet webcasts
I found interesting from April. Most are during the day and with
meetings and...
2006-05-01
701 reads
This question comes up enough on the forums and with SP1 for SQL Server
2005 released, I'll cover it again. You...
2006-04-30
1,603 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...
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