DacFX Links
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
45 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
45 reads
I thought it would be a good idea to gather together a list of links for DacFx, blogs code or...
2014-12-07
89 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the setup files.
The BITS service is used to download files...
2014-12-07
4 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
53 reads
If you get the Visual Studio 2012 or 2013 web installer then it uses the BITS service to download the...
2014-12-07
51 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place and you want to add Sql Server tests it...
2014-11-20
7 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
53 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
18 reads
When you already have a test framework setup such as MSTest or NUnit and possibly a CI build in place...
2014-11-20
61 reads
When unit testing code there is a really powerful feature that is either called mocking or faking or sometimes using stubs and what these mean is creating objects that...
2014-11-18
9 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