SSDT all the way
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
29 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
29 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
44 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local...
2015-02-16
632 reads
I generally write T-SQL code in SSDT (Sql Server Data Tools) and find that I often publish to my local database instance and then test the actual code in...
2015-02-16
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
34 reads
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
38 reads
In this series of blog posts, I am talking about how to use agile or modern development practices to help...
2015-02-12
848 reads
NOTE: THIS WAS WRITTEN IN 2015, it is now 2020 - that is 5 years so please consider this a historical artifact that is probably out of date. In...
2015-02-12
In this series of posts I am going to talk about what it is we need to do, as Sql...
2015-02-12
29 reads
In this series of posts I am going to talk about what it is we need to do, as Sql...
2015-02-12
45 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