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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 3, 20262026-06-03T21:57:44+00:00 2026-06-03T21:57:44+00:00

I find that there are only after and instead of triggers in sql server.

  • 0

I find that there are only after and instead of triggers in sql server. And it is illegal to modify the values in the inserted pesudo table. Then my problem occurs: If I want to check the data which is going to be inserted into my table, and when the data violates my constraints I should modify these values to default values, how to do it ? How about updateing the values after inserted ? However, if there’s no primary key or colum which is unique in my table, how can I locate the row just inserted and then update it ?

  • 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-06-03T21:57:46+00:00Added an answer on June 3, 2026 at 9:57 pm

    Basically, with an INSTEAD OF INSERT trigger, you can achieve what you’re looking for – just read out the data from the INSERTED pseudo table, modify it, and insert it into the table

    So your trigger would look something like this:

    CREATE TRIGGER YourTrigger ON dbo.YourTable    
    INSTEAD OF INSERT
    AS
        SET NOCOUNT ON
    
        -- do the INSERT based on the INSERTED pseudo table, modify data as needed
        INSERT INTO dbo.YourTable(Col1, Col2, ....., ColN)
          SELECT 
              Col1, 2 * Col2, ....., N * ColN
          FROM 
              INSERTED
    

    Of course, you could also add e.g. checks in the form of WHERE clause to that SELECT .... FROM INSERTED statement to e.g. ignore certain rows – the possibilities are endless!

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

Sidebar

Related Questions

Is there any way to make find-name-dired to only show filenames that I can
I'm writing an iPhone application and I find that there are three controllers in
I find that if there are a lot of classes the compilation time is
I find it confusing that there is an ActiveRecord delete as well as destroy.
All my searches returned nothing and I find it odd that there aren't any
I found that there's a clearRect() method, but can't find any to clear an
I have noticed that there are strange requests to my website trying to find
I'm trying to find eveything inside a div using regexp. I'm aware that there
I realise there might be similar questions but I couldn't find one that was
There's a many-to-many UserFeed table that stands between User and Feed and denotes a

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.