GeekArticles
FAQ
Oracle FAQReferencing values in update trigger
Author: asktom.oracle.com |
Published: 2nd May 2008 |
Visited: 76 times |
Add CommentFiled in: Oracle FAQTom,
When a before update for each row trigger fires and a certain column was not set in the update statement, the :new value for the "certain column" appears to be set to the :old value by the time the trigger fires. Is there a way to determine i...
Read Article Sponsored Links
Related Articles
• RESTRICT USERS TO INSERT/UPDATE DATA EXCEPT THEIR PRIVILIEGES DEAR TOM
i learn a lot from this platform as a new dba
i have a situation here. i did't write code/script here because i havn't any idea that how i ask from you? i have tried to convey my..
i have a database of almost 60 tables. application d ...
• how can I tell what sql caused my trigger to fire Hi,
We have a database table from which the rows are deleted and we have no idea how is it happening. Users claim that they are not deleting it through application.
I put an ondelete trigger on that table and stored the rows that were deleted in ...
• LMTS autoextend values for NEXT and MAXSIZE Hi Tom,
I have a tablespace on Oracle 9.2.0 that I wish to convert from DMTS to LMTS for obvious performace reasons. However I'm just confused how autoextend uses the NEXT and MAXSIZE parameters.
I need to create a 8Gb tablespace but can only ...
• Java SE 6 Update 10 Beta This update introduces new Java Plug-In, Java Kernel, Java Deployment Toolkit, new Java system properties, Java Quick Starter, hardware acceleration support, and Nimbus to provide an optimized consumer-end user experie ...
• Update base on join view fails with ora 1779 Hi,
Here is the problem
update (select t1.* from T1,T2 where t1.col=T2.col) t
set col4='toto'
ora-1779
even if i try /*+bypass_ujvc*/ in my update
update /*+bypass_ujvc*/ (select t1.* from T1,T2 where t1.col=T2.col) t
set col4='toto' ...