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
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
Hopefully this should put the ORM debate to bed, either use an ORM or don't but please don't access tables...
2015-05-20
543 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,526 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
56 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated “compare...
2015-04-27
64 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
2 reads
When you deploy your Sql Server code, there are two approaches, there is the manual way and the automated "compare...
2015-04-27
575 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
42 reads
BIML, you either love it or hate it - either you use it to totally generate hundreds of packages or a...
2015-04-27
42 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
By Steve Jones
This is my last week of the year working (I guess I come back...
By Steve Jones
This is my last week of the year working (I guess I come back...
Want to seriously boost your data skills? Mastering advanced SQL is the key, whether...
I have an ADF pipeline that copies Files from source to destination. Both Source...
Comments posted to this topic are about the item Function Defaults
I have created this function in SQL Server 2022:
CREATE FUNCTION dbo.AddInt (@one INT, @two INT = 1) RETURNS INT AS BEGIN RETURN @one + @two ENDHow can I call this and invoke the default value for @two? See possible answers