SSDT Myths 1 - SSDT only works with TFS
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT and while it was very interesting there were a...
2015-04-02
I was reading a white paper from a Sql Server tools vendor about how to integrate their tools with SSDT and while it was very interesting there were a...
2015-04-02
Calling all London/Sussex Sql Developers does this sound like you?
Would you like to set up Continuous Integration or Continuous DeploymentDo...
2015-03-19
408 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous...
2015-03-19
37 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous...
2015-03-19
39 reads
Calling all London/Sussex Sql Developers does this sound like you? Would you like to set up Continuous Integration or Continuous Deployment Do you want to get your databases...
2015-03-19
In part 3 of this series of blogs on "getting more agile" I am going to look at unit testing...
2015-03-03
390 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing...
2015-03-03
55 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing...
2015-03-03
47 reads
In part 3 of this series of blogs on “getting more agile” I am going to look at unit testing and why we need to do it.
My code is...
2015-03-03
1 reads
What is it?
MergeUi is a addin (VSPackage) for Visual Studio / Sql Server Data Tools projects. It is a ui to...
2015-03-01
399 reads
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