AdventureWorksCI Step 1 planning
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards....
2015-06-12
32 reads
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards....
2015-06-12
32 reads
This is part of a series on how to take the Adventureworks database and bring it inline with modern standards....
2015-06-12
40 reads
What am I doing?
Creating a publically available version of the adventureworks 2012 oltp database but by putting it under source...
2015-06-10
483 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under...
2015-06-10
39 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under...
2015-06-10
40 reads
What am I doing? Creating a publically available version of the adventureworks 2012 oltp database but by putting it under source control, implementing unit tests and improving the design...
2015-06-09
1 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish changes, how do I make it faster?” or the...
2015-06-02
I see the same question again and again "I am using SSDT but it takes a long time to publish...
2015-06-02
6,241 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
35 reads
I see the same question again and again “I am using SSDT but it takes a long time to publish...
2015-06-02
44 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