DRP for SQL Server in French - traduction en français du plan de relève – part 2
Part 2 of the translation for the French version of the Disaster Recovery for SQL Server Databases - comments welcome. Donc,...
2009-09-24
1,514 reads
Part 2 of the translation for the French version of the Disaster Recovery for SQL Server Databases - comments welcome. Donc,...
2009-09-24
1,514 reads
There are about 45 paragraphs that I hope to progressively and quickly translate for the French version of the Disaster...
2009-09-16
1,223 reads
As mentioned by Phil Factor during the previous post’s comments regarding an example disaster recovery template/plan, and to keep in...
2009-09-07
1,929 reads
Well, it finally happened, the complete disaster recovery article was reviewed, reviewed again, rewritten, revisited…you get the picture…and published. As described...
2009-09-03
2,182 reads
Recently, we began the install of a new instance on a VMware Host and ran into an issue with a problematic outdated...
2009-08-24
965 reads
In the Spring of 2008 Idera launched its SQL admin toolset at a super low deal of around two hundred...
2009-08-18
1,804 reads
Let's say it is a late Monday morning, because something always comes up before you are required at your vocation,...
2009-08-10
5,608 reads
As far as operating systems go, I can be pretty conservative with respect to what operating system I chose to have at...
2009-08-09
773 reads
Let's say it is a late Monday morning, because something always comes up before you are required at your vocation,...
2009-08-04
7,935 reads
After reading several pages of comments on this posting, I'm taking a stab at helping Canadian Unity on my beloved...
2009-07-14
3,712 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