The Chance of Failure
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
2011-03-31
152 reads
Do you plan for failure as a possibility or a probability? The difference might mean you take your plans and testing a little more seriously. Steve Jones notes that you might want to plan on the latter.
2011-03-31
152 reads
2011-03-30
85 reads
Today we have a guest editorial from Andy Warren that talks about the problems we sometimes run into when we must work with other people and make decisions. Sometimes getting the information from people, or giving it to them, is not as simple as we would like.
2011-03-29
148 reads
With SQL Server releasing new cumulative updates this week, Steve Jones talks about the patching strategy of SQL Server.
2011-03-28
342 reads
Today we have a guest editorial from Stanley Popovich that talks about dealing with stress at work.
2011-03-28
245 reads
This Friday Steve Jones asks you about the Enterprise Edition of SQL Server, and what should the distinction be?
2011-03-25
196 reads
A hacker breaches security by gaining control of an executive's email account. Does that mean that we should consider adding another level of authentication to privileged requests?
2011-03-24
155 reads
A new series of attacks were proven recently using music files to attach embedded systems in cars. Could this be another attack vector that we need to worry about?
2015-12-22 (first published: 2011-03-23)
578 reads
Today we have a guest editorial by Andy Warren. This one continues the thought of how you relate to the rest of your company, or "the business" as is it often known.
2011-03-22
107 reads
Rodney landrum wonders what, if anything, you would do in SQL, or any other beloved technology, if you did not have to?
2011-03-21
233 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