|
Needles,Stephen J on Friday, June 13, 2014 2:28 PM wrote:
This worked:
I'm trying to create a trigger to update the row just written to a
table. I'm having difficulties because it cannot resolve the correlation
of the variables. The example only has one of 4 columns that I need to
update.
Here is the entire code for the trigger:
Create trigger needles.WBXMLDtg01
after insert on needles.WBXMLD
referencing new row as new_row
for each row
mode db2row
update needles.wbxmld
set wbxtsp = now()
where wbxprc = new_row.wbxprc
this is the error:
SQL State: 42703
Vendor Code: -206
Message: [SQL0206] Column or global variable WBXPRC not found. <<SNIP>>
Why can't WBXPRC be found? It is the key for the table and as such
exists in needles.WBXMLD. It is also identified using the
referencing name for the new row, new_row.
My experience with triggers is very low and after spending much of
the day looking online and in many manuals, I'm stuck.
Create trigger needles.WBXMLDtg01
after insert on needles.WBXMLD
referencing new row as new_row
for each row
mode db2row
update needles.wbxmld
set wbxtsp = now()
where PROCESS_ID = new_row.PROCESS_ID
I surely don't understand why using the Alternative Name works and
the use of the Field Name didn't. Anyone any ideas?
As an Amazon Associate we earn from qualifying purchases.
This mailing list archive is Copyright 1997-2024 by midrange.com and David Gibbs as a compilation work. Use of the archive is restricted to research of a business or technical nature. Any other uses are prohibited. Full details are available on our policy page. If you have questions about this, please contact [javascript protected email address].
Operating expenses for this site are earned using the Amazon Associate program and Google Adsense.