When I generate the SQL using PowerDesigner and run it in Oracle, it throws the error
Warning:Trigger creation with compilation errors
Before create trigger you need create sequnce
Create sequence material_classify_seq start with 1;
after create trigger
The error message suggests that sequence material_classify_seq
is missing. You can create the missing sequence with the following SQL statement:
Create Sequence material_classify_seq;