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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 31, 20262026-05-31T23:27:43+00:00 2026-05-31T23:27:43+00:00

I am developing an Auction site in asp.net3.5 and sql server 2008R2, My Database

  • 0

I am developing an Auction site in asp.net3.5 and sql server 2008R2, My Database has an Auction Table that has a calculated column “AuctionStatus” –
(case when [EndDateTime] < getdate() then ‘0’ else ‘1’ end)
that gives auction status Active or inactive based on End Date.

Now I want to call a stored procedure that sends email notifications to buyers and sellers as soon as AuctionStatus becomes ‘0’. For that i tried to create a after update trigger that could call the email notification sp, but i am not able to do so.
I am getting the following error message :-

Msg 2114, Level 16, State 1, Procedure trgAuctionEmailNotification,
Line 6 Column ‘AuctionStatus’ cannot be used in an IF UPDATE clause
because it is a computed column.

The trigger is:

CREATE TRIGGER trgAuctionEmailNotification ON SE_Auctions
AFTER UPDATE
AS
BEGIN
    IF (UPDATE (AuctionStatus))

BEGIN

 IF EXISTS (SELECT * FROM inserted WHERE currentbidderid > 0
                                      AND AuctionStatus='0' )
     BEGIN
        DECLARE @ID int
        SELECT @ID = AuctionID from inserted
        EXEC spSelectSE_AuctionsByAuctionID @ID         
     END
    END
END
  • 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-31T23:27:44+00:00Added an answer on May 31, 2026 at 11:27 pm

    You could just replace AuctionStatus with the corresponding expression :

    IF EXISTS (SELECT * FROM inserted WHERE currentbidderid > 0 AND [EndDateTime] < getdate() )
    

    But, the point is I don’t see how your trigger will be “triggered” as [AuctionStatus] is never “updated”. Its Value is just calculated whenever you need it.

    You could go for a sql job that runs every x minutes and send a notification for each auction which ended during the last x minutes.

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

Sidebar

Related Questions

I am developing an auction site that requires maintenance scripts to be run in
I am developing an ASP.NET MVC application that has two kind of pages: (1)
I'm developing an AJAX-heavy site with JavaScript MVC and an ASP.NET MVC server. To
On an ASP.NET MVC (Beta) site that I am developing sometimes calls to ActionLink
I am currently developing an online Auction system using ASP.NET 3.5 and SQLServer 2008.
Recently I started with developing a JBoss SEAM web application (auction site). So far
I'm developing a site that sends email notifications to users after certain events/user actions
I'm developing a PHP website that uses url routing. I'd like the site to
I'm developing a mobile site using Zend framework, and the site has two possible
I'm in the process of developing a site that handles user accounts in the

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.