Source control isnt just a backup
In the second part of this series on getting more agile and bringing our Sql Server development practices up to...
2015-02-19
39 reads
In the second part of this series on getting more agile and bringing our Sql Server development practices up to...
2015-02-19
39 reads
In the second part of this series on getting more agile and bringing our Sql Server development practices up to...
2015-02-19
433 reads
K-SSIS-ed A re-envisioned IDE for SSIS packages, jump here
SSDT Dev Pack A few helpers to make using SSDT slightly better, the killer feature for me is quickly deploying the...
2015-02-16
3 reads
K-SSIS-ed A re-envisioned IDE for SSIS packages, jump here
SSDT Dev Pack A few helpers to make using SSDT slightly better,...
2015-02-16
53 reads
K-SSIS-ed A re-envisioned IDE for SSIS packages, jump here
SSDT Dev Pack A few helpers to make using SSDT slightly better,...
2015-02-16
38 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local database instance and then test the actual code in...
2015-02-16
4 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
652 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
49 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
31 reads
NOTE: THIS WAS WRITTEN IN 2015, it is now 2020 - that is 5 years so please consider this a historical artifact that is probably out of date. In...
2015-02-12
4 reads
By Vinay Thakur
Quick Summary for Microsoft SQL Server till 2025, I am fortunate to be part...
By James Serra
Why this comparison feels confusing If you’re a Power BI report author who’s just...
By Steve Jones
I’m not sure I knew identity column values could not be updated. I ran...
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