Why Does Code Outlining In SSMS Only Work When Connected To SQL 2008?
Code Outlining has been part of Visual Studio since VS.NET 2002. If you're not familiar with it, code outlining is...
2009-08-04
465 reads
Code Outlining has been part of Visual Studio since VS.NET 2002. If you're not familiar with it, code outlining is...
2009-08-04
465 reads
I’m fairly certain Jack Bauer isn’t involved with this new initiative from PASS. Just as I’m also certain I won’t...
2009-08-03
734 reads
One of the bloggers here at SQLServerCentral (and a good friend) posted a note about Active August
last week. In the...
2009-08-03
393 reads
According to a study by PayScale, and published in the July/August 2009 issue of Inc. Magazine, Database Administrators make more...
2009-08-03
558 reads
John finally got things caught up and had time to finish the evals, here’s how I did on my presentation...
2009-08-03
329 reads
PASS is sponsoring a 24 hours of PASS event on September 2nd. Consecutive live (Live Q&A also) 1 hour sessions...
2009-08-03
319 reads
I woke up early on Saturday for a run. Staying at the Cook Hotel on the LSU campus, I had...
2009-08-03
585 reads
Thursday this week I get to hang out, virtually, with some of the heavy hitters of the industry, Brent Ozar,...
2009-08-03
522 reads
We launched this last week, a dedicated sub group for sql bloggers. To be eligible to join you have to...
2009-08-03
250 reads
At 5:00 AM on August 1, 2009 I was awaken by a ringing cell phone. It was Mark, the official...
2009-08-03
484 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...
We need to replace our Windows server running SQL 2017. Any reason not to...
Comments posted to this topic are about the item Using OPENJSON
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