How can i get all the affected row in the trigger.
In sybase there is a table “deleted” which stores copies of the affected rows during delete and update statements
Is there any solution in oracle which do the same in a table level trigger?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
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.
You can use
newandoldvalues in the trigger:It’s not the same like in sybase, but it is what are you looking for.
Here you can find more information.