Daily New Feature SQL Server 2008 – Day 9
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-18
454 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-18
454 reads
Every day for the next couple of weeks, I aim to highlight one of SQL Server 2008’s new features, simply...
2010-05-18
427 reads
I liked Android, I really did, and I thought my G1 was the best phone I’d had to date when...
2010-05-18
820 reads
Getting Started With PowerShell Variables
Yesterday we laid the ground work for PowerShell Week. Today we will learn about Variables in PowerShell. You will...
2010-05-18
994 reads
Report Builder 3.0 offers many new features to its users. One of the best features, in my opinion, is the...
2010-05-18
1,830 reads
I struggled with the title for this one. One of the thoughts I had was that I believe in being...
2010-05-18
681 reads
I also just discovered that Microsoft releasedSQL Server 2008 R2 RTM CU1 yesterday. It is Build 1702, and it contains...
2010-05-18
3,079 reads
Microsoft has releasedSQL Server 2008 SP1 CU8 (Build 2775). There is no corresponding CU for the RTM branch of SQL...
2010-05-18
1,312 reads
The top things YOU need to know about managing SQL Server – in one place, on one day – presented by two...
2010-05-18
727 reads
The cost of making a trip differently in the US, in terms of time, effort, and driving habits, is small....
2010-05-18
919 reads
By HeyMo0sh
Working in DevOps, I’ve seen FinOps do amazing things for cloud cost control, but...
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...
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