Pre-Compare & Pre-Deployment Scripts to SSDT
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
1,490 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
1,490 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
122 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
85 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
219 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the dacpac and database has been deployed. The process looks...
2015-07-20
3 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
515 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
32 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
39 reads
In the spirit of having apps that do just one thing I have put a really small .net app on github that tries to create a connection to a...
2015-07-17
3 reads
In my previous post on running SQL Server in a container I showed how you could use the Spoon (https://spoon.net)...
2015-07-08
1,339 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