PL/SQL Accessing DBA_TRIGGERS
I am trying to get the trigger_body column (long) into a pl sql varible(long) and am getting character string buffer too small. The text of the body of the trigger is approaching 32767 mark or whatever, so i tried varchar2(4000). Still having the same error.
My goal is to get the text into the varible so i can do a compare with the same dba_triggers table in another database. This seems to work, however i cannont get past the hurdel of getting that text into a form that i can do a compare, as the program blows up at this point.
Any suggestsions are greatly appreciated. THanks in advance!
[616 byte] By [
buckey] at [2007-11-20 9:55:39]

# 1 Re: PL/SQL Accessing DBA_TRIGGERS
Think i can use the meta_data.get function in 10g for this? For instance if i pass the name of a trigger, get the results into a clob, then do the same for the trigger i am comparing for equality. Will this work as i am hoping?
buckey at 2007-11-9 13:45:21 >
