The Database Server Upgrade for Let's Encrypt
Let's Encrypt upgrades their database servers and publishes the details.
2021-02-01
122 reads
Let's Encrypt upgrades their database servers and publishes the details.
2021-02-01
122 reads
Many of us grew up with one version of Cinderella or another. The step child that's horribly mistreated by the new parent is a scary story. In the Disney version, everything works out fine. However, if you read some of the original Grimm versions of the story (and there is more than one version), not […]
2021-01-30
65 reads
Cutting edge technology might vary for many people, and Steve wonders what you think.
2021-01-29
105 reads
When downtime strikes, we may have to make decisions about which systems to focus our efforts upon. Steve talks about the impact of a disaster on your choices.
2021-01-28
100 reads
We had unfortunately lost quite a few members of our SQL Family. We have a new way to remember them.
2021-01-27
160 reads
Is it always important to have the most current data? Steve notes that you might need to make a decision here.
2021-01-26
129 reads
Many people don't feel like they can make changes in their work environment. Today Steve notes this is common in many organizations.
2021-01-25
107 reads
Changes in data privacy law in California are demanded by consumers.
2021-01-23
71 reads
Learning to be a better database developer can be hard. Today Steve asks how you might suggest someone learn.
2021-01-22
271 reads
Today Steve Jones gives you ideas on how to keep learning and growing your career.
2021-01-20 (first published: 2018-01-19)
303 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...
Comments posted to this topic are about the item Using OPENJSON
Comments posted to this topic are about the item Data Modeling with dbt for...
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