Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6806903
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T19:46:01+00:00 2026-05-26T19:46:01+00:00

I am getting this error: Procedure or function ‘NewEmployee’ expects parameter ‘@LastName’, which was

  • 0

I am getting this error:

Procedure or function ‘NewEmployee’ expects parameter ‘@LastName’, which was not supplied

This is what I have:

    CREATE PROCEDURE NewEmployee1 (
     @LastName nvarchar(75)
     ,@FirstName nvarchar(50)
     ,@HireDate datetime
     ,@Birthdate datetime
     ,@Title nvarchar(30))
WITH EXECUTE AS CALLER
AS
BEGIN

Set NOCOUNT ON;
Begin Try
    Begin Transaction;
    INSERT INTO Employees (LastName,FirstName,HireDate,BirthDate,Title)
    VALUES (@LastName, @FirstName, @HireDate,@Birthdate,@Title)

COMMIT TRANSACTION;

End Try
Begin Catch
--Rollback any active or uncommitable transactions before
--inserting information in the errorLog
If @@Trancount > 0
Begin
Rollback Transaction;
End
Execute NewEmployee1 ;
End Catch;
End;

Exec NewEmployee
 @LastName = 'Halpert',
 @FirstName = 'Jim',
 @HireDate = '11/14/2011',
 @BirthDate = '04/02/1971',
 @Title = 'Sales';

Should I have it like @lastName nvarchar(75) = Null?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T19:46:02+00:00Added an answer on May 26, 2026 at 7:46 pm

    You have the line Execute NewEmployee1 ; which attempts to execute the stored procedure with no parameters.

    If you want default values assigned to parameters, you need to do as you suggested…

    CREATE PROCEDURE NewEmployee1 (
      @LastName nvarchar(75)   = NULL
     ,@FirstName nvarchar(50)  = NULL
     ,@HireDate datetime       = NULL
     ,@Birthdate datetime      = NULL
     ,@Title nvarchar(30)      = NULL
    )
    

    Or replacing the NULLs with any appropriate default value.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am getting this error: Msg 201, Level 16, State 4, Procedure NewEmployee, Line
I'm getting this error: The remote certificate is invalid according to the validation procedure.
When running a stored procedure, we're getting the error 297 The user does not
I'm getting missing right parenthesis error while calling the function in this package ,
Existence error in user:nth1/3 ! procedure user:nth1/3 does not exist I have included module
I have this procedure in the database: CREATE OR REPLACE FUNCTION replacePageRelevance(id INT, value
I am getting this error while developing a stored procedure Implicit conversion of varchar
Getting this error: 2009-09-03 12:44:02.307 xcodebuild[307:10b] warning: compiler 'com.apple.compilers.llvm.clang.1_0.analyzer' is based on missing compiler
Getting this error with jquery & jquery.form. Site has been live for awhile..upgraded to
Anyone getting this error when using the new free chart controls MS bought from

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.