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

I have [MySp], A stored procedure. So check this out.. when I run this
I'm using dbms_scheduler to execute a PL/SQL stored procedure. I would like to be
I am trying to execute a query using a stored procedure in Eclipse, but
I'm using adodb5 to call this stored procedure but MySQL doesn't understand $sealID is
i want to execute a mysql stored procedure from mysql command prompt in phpmyadmin.stored
I am using the following code to consume a CUBRID database java stored procedure.
I'm passing a data table to stored procedure (using a table type) to update
I am trying to create a stored procedure using pass-through query in SQL Server
I am creating and testing a stored procedure through remote using JUnit , my
I am trying to run an mssql stored procedure which passes in some user

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.