序列:
CREATE SEQUENCE sequ_arrearage_his INCREMENT BY 1 START WITH 1 MAXVALUE 999999999999;触发器:
CREATE OR REPLACE TRIGGER trigger_arrearage_his BEFORE
 UPDATE OR DELETE ON fin_bill_arrearage
 FOR EACH ROWBEGIN
insert into his_fin_bill_arrearage(HistoryID, Bill_ID, BillType, SubOrderTable, SubOrder_ID, 
   SerialNumber, AccountMoney, AccountScale, BalanceMoney, Content, 
   Re, PassStaff_ID, Staff_id, owner_id, State, Update_date, Create_date)
values(:sequ_arrearage_his.nextval, :old.Bill_ID, :old.BillType, :old.SubOrderTable, :old.SubOrder_ID, 
   :old.SerialNumber, :old.AccountMoney, :old.AccountScale, :old.BalanceMoney, :old.Content, 
   :old.Re, :old.PassStaff_ID, :old.Staff_id, :old.owner_id, :old.State, :old.Update_date, :old.Create_date);END;现在序列已创建成功。到创建触发器时,SQL Plus老报错:警告: 创建的触发器带有编译错误。请问是哪里不对啦?顺便问一下,对触发器怎么进行调试?谢啊