Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> RE: any ideas for a workaround for bug 272219 (create trigger error?)
Can you rename the table and use a synonym?=20
-Daniel
--=20
Daniel Harron
Database Management
IPsoft, Inc.
daniel.harron_at_ip-soft.net
http://www.ip-soft.net/
Phone: 888.IPSOFT8
Fax: 801.681.7664
-----Original Message-----
From: oracle-l-bounce_at_freelists.org =
[mailto:oracle-l-bounce_at_freelists.org]
On Behalf Of Jacques Kilchoer
Sent: Monday, April 26, 2004 6:24 PM
To: Oracle-L (E-mail)
Subject: any ideas for a workaround for bug 272219 (create trigger =
error?)
See Bug 272219 (Oracle 7.3 to 10.1 and all versions in-between), and
Metalink forum discussion 149572.999.
You cannot create a trigger on a table if the table has a column named =
the
same as the column's data type.
=20
e.g. I cannot create a trigger on this table because the column name is =
the
same name as the column type
=20
SQL> create table t ("DATE" date) ;
Table cr=E9=E9e.
SQL> create trigger tr before update on t
2 for each row
3 begin
4 null ;
5 end ;
create trigger tr before update on t
*
-- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html ----------------------------------------------------------------- ---------------------------------------------------------------- Please see the official ORACLE-L FAQ: http://www.orafaq.com ---------------------------------------------------------------- To unsubscribe send email to: oracle-l-request_at_freelists.org put 'unsubscribe' in the subject line. -- Archives are at http://www.freelists.org/archives/oracle-l/ FAQ is at http://www.freelists.org/help/fom-serve/cache/1.html -----------------------------------------------------------------Received on Mon Apr 26 2004 - 17:24:53 CDT
![]() |
![]() |