Jack Corbett

  • Interests: Sports, books, Bible

Blog Post

PASS SQLRally Professional Development Vote Done and the Development Track Vote is open

Congratulations to the winners in the Professional Development Track Vote for PASS SQLRally.  You can see the winners at http://www.sqlpass.org/sqlrally/2011/Agenda/Sessions/SessionsProfessionalDevelopment.aspx. Now the voting is open for the Database &...

You rated this post out of 5. Change rating

2011-01-18

1 reads

Blogs

My 2024 in Data: Health and Workouts

By

This is my last week of the year working (I guess I come back...

My 2024 in Data: Reading

By

This is my last week of the year working (I guess I come back...

Book Review – Agile Data Warehouse Design

By

I recently read the book Agile Data Warehouse Design – Collaborative Dimensional Modeling, from...

Read the latest Blogs

Forums

Windows could not start the SQL server (SQLEXPRESS) service (macOS)

By Meditation

I have a common problem that I just cannot figure out after scrolling through...

Adventureworks data does not load

By Meditation

Hello, I am a new member here so forgive me if I am not...

Restore Procedure not working

By Chitown

I created a small procedure that reads the backup file and restores the DB...

Visit the forum

Question of the Day

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
END
How can I call this and invoke the default value for @two?

See possible answers