Never Delete Data
Should you ever delete data? In a production environment, do the benefits of deleting old data outweigh the possible risks?
Data...
2009-04-07
1,691 reads
Should you ever delete data? In a production environment, do the benefits of deleting old data outweigh the possible risks?
Data...
2009-04-07
1,691 reads
I was joking with Buck Woody on Facebook the other day and he mentioned he’d been a data janitor at...
2009-04-07
756 reads
Lately I’ve gotten a lot of questions submitted to SQLServerCentral that have dealt with weird data type issues. We had...
2009-04-06
587 reads
As I've covered in my two earlier posts I've been investing a little time to figure out how to make...
2009-04-06
476 reads
If you've noticed a significant drop in my blogging I apoligize but I've been working on an exciting project with...
2009-04-06
678 reads
Earlier I talked about dealing with the difficult forum user from the perspective of providing help. Now let us look...
2009-04-05
1,996 reads
Technorati Tags: SQL Server,I/O"Any technology, no matter how primitive, is magic to those who do not understand it."
freefall
Arthur C. Clarke...
2009-04-05
600 reads
Many of us make a living by working on tasks while monitoring email, taking a few calls, and in non...
2009-04-05
462 reads
I’m aborting for now. I think I could replace the seat belts, but I don’t have the right part at...
2009-04-05
558 reads
I was looking through some of the active threads on SQLServerCentral.com tonight, and I ran across one with some code...
2009-04-04
3,643 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...
Kamagra Oral Jelly 100 mg is a medication used to treat erectile dysfunction (ED)....
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