Pre-Compare & Pre-Deployment Scripts to SSDT
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
117 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
117 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
81 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the...
2015-07-20
208 reads
When you use SSDT to deploy database changes you can include a pre/post deploy script which is run after the dacpac and database has been deployed. The process looks...
2015-07-20
2 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
509 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
29 reads
In the spirit of having apps that do just one thing I have put a really small .net app on...
2015-07-17
35 reads
In the spirit of having apps that do just one thing I have put a really small .net app on github that tries to create a connection to a...
2015-07-17
1 reads
In my previous post on running SQL Server in a container I showed how you could use the Spoon (https://spoon.net)...
2015-07-08
1,328 reads
In my previous post on running SQL Server in a container I showed how you could use the Spoon (https://spoon.net)...
2015-07-08
34 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...
I recently read the book Agile Data Warehouse Design – Collaborative Dimensional Modeling, from...
I have a common problem that I just cannot figure out after scrolling through...
Hello, I am a new member here so forgive me if I am not...
I created a small procedure that reads the backup file and restores the DB...
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