Containing the Work
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
Containers are valuable in many software domains. Are there places we, as data professionals, would like to use software containment?
If a successful IT career is just as much about tenacity, interest and retention as it is about brainpower, then how does one go about continuous learning?
No worries about dropping databases. Now we can search for its dependencies before the database dies. Part 1 of a 2-part article.
The SQL Server Luxembourg User Group invites you to join us at our next event in Microsoft’s Offices, at 6:00pm on Tuesday 7th March
Greg Larsen explains how you can use Dynamic Management Objects and stored procedures to return your worst performing T-SQL statements.
An open letter to Microsoft from the CEO of Mandriva Linux might not have been the best idea.
Today Steve Jones asks what default values you might choose for new columns in a table.
This article exlores the usage of CTEs as a replacement to cursors in order to generate additional data by applying logic to existing data.
Bhavesh Patel shows how to clone a SQL Server login onto another server while keeping the password the same.
A short demonstration on how to configure Reporting Services (SSRS) with an SSL certificate.
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