2012-03-03
7 reads
2012-03-03
7 reads
2012-03-03
2 reads
2012-03-03
5 reads
2012-03-03
7 reads
Best way to tune production server is to find out what are the queries executed in a particular duration and...
2012-02-27
866 reads
2012-02-27
2 reads
2012-02-27
5 reads
2012-02-27
3 reads
2012-02-27
4 reads
Join SQL Server experts as they take an in-depth look at the hottest SQL Server topics over 24 consecutive (and...
2012-02-17
720 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