2014-01-08
1 reads
2014-01-08
1 reads
On 8th Jan 6.30 PM, I will be presenting “AlwaysOn Multisite Cluster Implementation In The Cloud”@ at San Francisco SQL...
2014-01-03
575 reads
On 8th Jan 6.30 PM, I will be presenting “AlwaysOn Multisite Cluster Implementation In The Cloud”@ at San Francisco SQL...
2014-01-03
350 reads
2014-01-03
2014-01-03
2014-01-03
2014-01-03
The San Francisco SQL Server User Group – Oct 10 2012 Thanks you everyone for attending session, here is the presentation...
2012-10-13
989 reads
The San Francisco SQL Server User Group – Oct 10 2012 Thanks you everyone for attending session, here is the presentation...
2012-10-13
320 reads
2012-10-13
3 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