Putting the ORM debate to bed
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables directly…
There are obviously reasons behind all of this but...
2015-05-20
4 reads
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables directly…
There are obviously reasons behind all of this but...
2015-05-20
4 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
581 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
69 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
60 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-05-07 (first published: 2015-04-27)
7,535 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
45 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
45 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare & deploy” way.
Manual The manual way is where you...
2015-04-27
6 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a bucket load of data flow components all at...
2015-04-27
5 reads
I had the honour of talking at the excellent Sql Saturday Exeter this morning and wanted to share my slides...
2015-04-25
450 reads
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...
A while back I wrote a quick post on setting up key mappings in...
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
Comments posted to this topic are about the item Testing is Becoming More Important
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