"Predicate Evaluation Order"
In writing an article for SQL Server Standard's January issue, I received a tech edit comment from Adam Machanic
about a...
2005-11-25
1,479 reads
In writing an article for SQL Server Standard's January issue, I received a tech edit comment from Adam Machanic
about a...
2005-11-25
1,479 reads
Visual Studio has spoiled me. I love the Intellisense feature that has continued to evolve with each new edition of Microsoft's...
2005-11-25
1,506 reads
Writing at article for SQL Server Central tends to be a very rewarding
experience. Every chance I get, I encourage others...
2005-11-25
1,482 reads
The following announcement came out this morning on the Annouce mailing list for MySQL:
"MySQL Connector/Net 1.0.7, a new version of...
2005-11-21
1,628 reads
David Litchfield has put out a brief (as
he says it, "It's called a brief because there's enough meat to make...
2005-11-19
1,396 reads
There has been some talk on Google Base on the Full Disclosure security
list. I've also seen on another blog about...
2005-11-19
1,391 reads
Catching back up on things. MySQL 5.0 went "RTM" at the end of October.
Haven't had a lot of chances to...
2005-11-19
1,363 reads
For those who use Perl and access SQL Server, MVP Erland Sommarskog has
announced a new module which uses OLE DB...
2005-11-19
1,519 reads
The release candidate for MySQL 5.0 is out. This little database is really growing up.
http://www.mysql.com/news-and-events/news/article_959.html
2005-09-27
1,364 reads
I've spent the last few weeks writing SOX documentation, more SOX
documentation, and even more SOX documentation. A lot the documentation
doesn't...
2005-09-02
1,380 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