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 6797417
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T18:36:25+00:00 2026-05-26T18:36:25+00:00

I have been trying to use an update trigger which checks for the title_id

  • 0

I have been trying to use an update trigger which checks for the title_id in the primary table. This is what i did:

ALTER TRIGGER [dbo].[EX6] on [dbo].[sales]
   INSTEAD OF UPDATE NOT FOR REPLICATION
AS
BEGIN 
   IF EXISTS(SELECT S.title_id 
             FROM inserted S
             INNER JOIN Titles T On T.title_id = S.title_id)
   BEGIN 
      UPDATE Sales 
      SET sales.stor_id = inserted.stor_id
         , sales.ord_num = inserted.ord_num
         , sales.title_id = inserted.title_id
          , sales.ord_order = inserted.ord_order,
         ,sales.qty = inserted.qty
   END

However, when i execute this, I am getting the following errors:

     the multi-part identifier inserted.stor_id could not be bound

The same error occurs for the rest of the columns used in update command. So, can u please help me out in solving this and successfully update the column in the database..

  • 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-26T18:36:25+00:00Added an answer on May 26, 2026 at 6:36 pm

    You have aliased inserted to be S so you will need to continue that in your UPDATE statement

    ALTER TRIGGER [dbo].[EX6] on [dbo].[sales]
       INSTEAD OF UPDATE NOT FOR REPLICATION
    AS
    BEGIN 
       IF EXISTS(SELECT S.title_id 
                 FROM inserted S
                 INNER JOIN Titles T On T.title_id = S.title_id)
       BEGIN 
          UPDATE st
          SET st.stor_id = S.stor_id
             , st.ord_num = S.ord_num
             , st.title_id = S.title_id
             , st.ord_order = S.ord_order
             , st.qty = S.qty
          FROM Sales AS st
          INNER JOIN inserted S ON st.stor_id = S.stor_id
       END
    

    I have updated the answer to reflect changes discussed in chat.

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

Sidebar

Related Questions

I am trying to use the following code, which I have not been able
I have been trying to use the Perl utility/module "prove" as a test harness
I have been trying to use a formula that is used to work out
I have been trying to use the latest NAnt (0.86 Beta 1) for a
I have been trying to use routes.rb for creating a URL /similar-to-:product (where product
I have been trying to use the hibernate dialect for SQLite from http://code.google.com/p/hibernate-sqlite/ in
Right now I have been trying to use Launchpad's API to write a small
I have been trying for 3 hours to update a new .xap for my
I have been trying to figure out how to do this and it seems
I have been trying to learn to use github, it has been fine until

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.