| |
GeekInterview.com > Interview Questions > Oracle > Data Access
| Print | |
Question: Oracle Mutation error
Answer: Please explain about Mutation error in database trigger in oracle with an example |
| July 07, 2008 14:29:09 |
#1 |
| srinivasanram2004 |
Member Since: July 2008 Total Comments: 7 |
RE: Oracle Mutation error |
| This error occurs when you try to select rows from a table and try to update the rows of the same table. Most developers face this problem. To avoid getting this error, create views, select the rows from the views, and then try to update the original table rows. |
| |
Back To Question | |