Azure Virtual Machine + Premium Disk Throughput Calculator
UPDATE: I haven't been keeping it up to date so deprecated it - if you find something like this useful moan at microsoft and get them to implement it!
I...
2017-12-02
30 reads
UPDATE: I haven't been keeping it up to date so deprecated it - if you find something like this useful moan at microsoft and get them to implement it!
I...
2017-12-02
30 reads
UPDATE: I haven’t been keeping it up to date so deprecated it - if you find something like this useful moan at microsoft and get them to implement it!
I...
2017-12-02
2 reads
Dear All,Very happy to share the 9th interview of #DataChannel. Mr.Madhivanan Ramachandran, 10 time Microsoft MVP Award winner and a Data Platform expert from India discusses "Best Practices for...
2017-12-02
23 reads
Dear All,
Very happy to share the 9th interview of #DataChannel. Mr.Madhivanan Ramachandran, 10 time Microsoft MVP Award winner and a...
2017-12-02
541 reads
Dear All,Very happy to share the 9th interview of #DataChannel. Mr.Madhivanan Ramachandran, 10 time Microsoft MVP Award winner and a Data Platform expert from India discusses "Best Practices for...
2017-12-02
8 reads
I think SQL Clone is one of the game changing products from Redgate. This product really fits into a DevOps...
2017-12-01
650 reads
2017-12-01
141 reads
In show #84 of the SQL Server Radio Hebrew Edition, Matan and I talked about how to calculate running totals in SQL...
2017-12-01 (first published: 2017-11-19)
2,877 reads
In October 2017, I completed the capstone project of the Microsoft Professional Program for Data Science. I’ve blogged about this...
2017-12-01 (first published: 2017-11-21)
3,140 reads
Have you ever had problem with your backup jobs taking more time than usual overlapping your maintenance window? It is...
2017-12-01
231 reads
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
By Steve Jones
We had an interesting discussion about deployments in databases and how you go forward...
By ChrisJenkins
You could be tolerating limited reporting because there isn’t an off the shelf solution...
SELECT COUNT(DISTINCT Component) AS Found FROM tblComponents WHERE(Component NOT LIKE '%[a-z]%') AND(LTRIM(RTRIM(Component)) = 'GM13622')...
Comments posted to this topic are about the item Remotely Engineer Fabric Lakehouse objects:...
Comments posted to this topic are about the item Creating JSON III
In a SQL Server 2025 table, called Beer, I have this data:
BeerIDBeerName 1Becks 2Fat Tire 3Mac n Jacks 4Alaskan Amber 8KirinI run this code:
SELECT JSON_OBJECTAGG(
BeerID: BeerName )
FROM beer;
What are the results? See possible answers