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

  • SEARCH
  • Home
  • 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 3757522
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 19, 20262026-05-19T10:01:11+00:00 2026-05-19T10:01:11+00:00

When I run this stored procedure using this: EXECUTE RecipeDetails.sp_InsertRecipe @title=’gumbo’, @introdution=’intro’, @ingredients=’onion’, @difficulty=’easy’,

  • 0

When I run this stored procedure using this:

EXECUTE RecipeDetails.sp_InsertRecipe
    @title='gumbo',
    @introdution='intro',
    @ingredients='onion',
    @difficulty='easy',
    @prepTimeHour=null,
    @prepTimeMinute=null,
    @inactiveTimeHour=null,
    @inactiveTimeMinute=null,
    @servings=null,
    @photo=null

I get an error saying

Msg 201, Level 16, State 4, Procedure sp_InsertRecipe, Line 0

Procedure or function
‘sp_InsertRecipe’ expects parameter
‘@introduction’, which was not
supplied.

Can some please advise me as to why it’s saying “introduction” isn’t a valid column name?

I have the following SQL Server stored procedure:

SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER PROCEDURE [RecipeDetails].[sp_InsertRecipe]
@title varchar(50),
@introduction varchar(255),
@directions varchar(2200),
@ingredients varchar(2200),
@difficulty varchar(6), or "expert"*/
@prepTimeHour tinyint,
@prepTimeMinute tinyint,
@inactiveTimeHour tinyint,
@inactiveTimeMinute tinyint,
@servings tinyint,
@photo varbinary(MAX)

AS

BEGIN
 SET NOCOUNT ON;

 INSERT INTO RecipeDetails.Recipe (title, introduction, ingredients, difficulty, 
 prepTimeHour, prepTimeMinute, inactiveTimeHour, inactiveTimeMinute, servings, photo)
 VALUES (@title, @introduction, @ingredients, @difficulty, @prepTimeHour, @prepTimeMinute,@inactiveTimeHour, @inactiveTimeMinute, @servings, @photo)
END
GO
  • 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-19T10:01:11+00:00Added an answer on May 19, 2026 at 10:01 am

    It’s a simple typo: see your call to the stored proc:

    EXECUTE RecipeDetails.sp_InsertRecipe
        @title='gumbo',
        @introdution='intro',   <== TYPO HERE !! Should be @introduction !!
        @ingredients='onion',
    

    You’ve supplied a parameter @introdution – but not @introduction (you’re missing a “c” in that name there)

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

Sidebar

Related Questions

Well I have this MySQL stored procedure that I wrote and if I run
I'm using dbms_scheduler to execute a PL/SQL stored procedure. I would like to be
I'm using adodb5 to call this stored procedure but MySQL doesn't understand $sealID is
I have a report that renders data returned from a stored procedure. Using profiler
I need to execute a SQL stored procedure every time before I query my
I have a stored procedure mentioned as below. I'm using SQL Server 2008 R2.
I am trying to run a stored procedure on my SQL server. I think
I am using latest codeigniter and trying to call stored procedure from my model.
The following code is supposed to run the sys.sp_setapprole stored procedure in my database.
I'm trying to run SQL backups through a stored procedure through Dapper (the rest

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.