When Would You Go?
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-15
40 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-15
40 reads
Someone sent me this note about a talk they'd had at their user group and the guest speaker mentioned the...
2008-02-14
2,257 reads
Why don't we have updates, patches, and service packs slipstreamed into the base product for new installs?
2008-02-14
139 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
38 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
34 reads
This year TechEd is across two weeks, with a different focus for each. Which one would you rather attend.
2008-02-14
48 reads
I started working through some labs for my SQL Server 2008 class and one of the labs was on the...
2008-02-12
1,154 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
92 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
44 reads
There are many ways to accomplish a task in SQL Server, and almost every technology. But too much choice might not be the best thing for beginners.
2008-02-12
48 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