I want to create a trigger on my table Audit
the function of trigger is :
it will set all values to NULL
which have string ‘null’
means 'null' -> NULL
how should i do it i want it for every column not any specific.
I want to create a trigger on my table Audit the function of trigger
Share
There’s no reflection in PL/SQL so you’ll need to do it like this:
So, if your audit table has only a few columns cut’n’paste will suffice. Otherwise you can generate the code out of the data dictionary.