SSDT: Build in VSCode
Over the last couple of years I have been using VSCode more and more and Visual Studio less and less, this is great but there isn't first class support...
2019-01-29
Over the last couple of years I have been using VSCode more and more and Visual Studio less and less, this is great but there isn't first class support...
2019-01-29
Over the last couple of years I have been using VSCode more and more and Visual Studio less and less,...
2019-01-29
271 reads
Sometimes you don't have the perfect development environment for SQL Server, sometimes you deploy to things like SQL Azure and want to test locally, for various reasons it is...
2019-01-25
Sometimes you don’t have the perfect development environment for SQL Server, sometimes you deploy to things like SQL Azure and...
2019-01-25
213 reads
Sometimes you don’t have the perfect development environment for SQL Server, sometimes you deploy to things like SQL Azure and want to test locally, for various reasons it is...
2019-01-25
5 reads
Reading Time 1 Minute
I have been getting kubernetes setup on my laptop via minikube and I followed all the examples to the T, especially the part about creating a...
2018-10-09
Reading Time 1 Minute
I have been getting kubernetes setup on my laptop via minikube and I followed all the examples...
2018-10-09
201 reads
I have been asked a few times now for course completion certificates so I have decided to give out certificates to anyone who pays for a plan and sends...
2018-07-18
3 reads
I have been asked a few times now for course completion certificates so I have decided to give out certificates...
2018-07-18
232 reads
TLDR: There is a new exciting community slack channel where you can find a mentor, a mentee or both if that floats your boat. The great Chrissy LeMaire (https://twitter.com/cl)...
2018-07-06
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...
The popular anabolic steroid drostanolone propionate, commonly known as Masteron, is a highly sought-after...
I have an ADF pipeline that copies Files from source to destination. Both Source...
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