Azure Data Studio and Version Control
This article examines how you can use Azure Data Studio with your git Version Control System.
2022-04-29
8,576 reads
This article examines how you can use Azure Data Studio with your git Version Control System.
2022-04-29
8,576 reads
2021-04-20
226 reads
2021-03-26
399 reads
2021-03-19
433 reads
2021-03-12
404 reads
2021-02-26
390 reads
2021-02-19
383 reads
2021-02-12
433 reads
Git is a great tool for source control and in this tip we look at how you can utilize Git source control to build and deploy database hotfixes.
2021-02-10
2021-02-05
470 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...
I have mentioned this several times over several years. Can someone please help me...
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:...
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