VSTS extensions, mixing VSS.require and import ... require
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing...
2018-03-05
137 reads
I have been starting to write more and more typescript lately and quite enjoying it. I have also been writing...
2018-03-05
137 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-20 (first published: 2018-02-08)
2,071 reads
In the last half of 2017, I decided to run a tSQLt course and went down the route of putting...
2018-02-16 (first published: 2018-02-06)
3,036 reads
In the first part of this series, we looked at where to find out more information about GDPR in the UK (hint: The ICO.gov website has everything you need)....
2018-02-08
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
97 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
108 reads
In the first part of this series, we looked at where to find out more information about GDPR in the...
2018-02-08
29 reads
In the last half of 2017, I decided to run a tSQLt course and went down the route of putting together a free 12-week email course. The intention was...
2018-02-06
In the last half of 2017, I decided to run a tSQLt course and went down the route of putting...
2018-02-06
289 reads
In the last half of 2017, I decided to run a tSQLt course and went down the route of putting...
2018-02-06
235 reads
By Steve Jones
This is my last week of the year working (I guess I come back...
I recently read the book Agile Data Warehouse Design – Collaborative Dimensional Modeling, from...
By Steve Jones
This is my last week of the year working (I guess I come back...
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