2020-07-21
5 reads
2020-07-21
5 reads
This is the first Video of the series, will show you how to configure Hyper-V and then create several VM’s to configure AlwaysOn
2020-07-14
5 reads
2020-07-14
2 reads
2020-07-14
3 reads
Prakash will talk about some of the coolest new features of SQL Server for performance tuning which you can use to quickly troubleshoot & improve performance.
2019-09-30
138 reads
2019-03-23
369 reads
On Sep 23rd 2.45 PM PST, I will be presenting 2 sessions on “SQL Server On Containers” @ at SQLSaturday San Diego, if...
2017-09-23
385 reads
On July 12th 6.30 PM PST, I will be presenting “SQL Implementations On Containers” @ at San Francisco data platform user...
2017-07-10
455 reads
Apr 22nd I will be presenting “Re-Indexing – The quest of ultimate automation” & “Consolidated Essential Performance Health Check using PowerShell” @ SQLSaturday, Silicon...
2017-04-19
380 reads
Webinar: on 12th Apr 10.00 AM PST, I will be speaking on “Streamline SQL Implementations”, if you are interested please...
2017-04-07
360 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...
Comments posted to this topic are about the item Function Defaults
Comments posted to this topic are about the item Big Data or Small Data
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