根据自己的错误和解决,总的归类出来啦:
1.我们在插入的类型不匹配,比如数据库里面是数字,我们用日期类型去填充.
2.我们忘数据库中插入的时候,为空的时候不要默认成null,这样数据库就不会出现这个问题啦.
3我花啦几个小时弄出来的问题
create or replace trigger CMS_TRG_MAT_STOR_PRICE
after insert or update
on cms_bdb_mat_erp
for each row
declare
v_mat_sid cms_bdb_mat_erp.sid%type;
v_mat_createdt cms_bdb_mat_erp.created_dt%type;
v_mat_createby cms_bdb_mat_erp.created_by%type;
v_mat_version cms_bdb_mat_erp.version%type;
v_mat_updatedt cms_bdb_mat_erp.updated_dt%type;
v_mat_updateby cms_bdb_mat_erp.updated_by%type;
v_mat_code cms_bdb_mat_erp.mat_code%type;
v_mat_desc cms_bdb_mat_erp.mat_desc%type;
v_mat_price cms_bdb_mat_erp.unit_price%type;
v_mat_count cms_bdb_mat_erp.real_num%type;
v_mat_cost_center_code cms_bdb_mat_erp.cost_center_code%type;
v_mat_cost_center_desc cms_bdb_mat_erp.cost_center_desc%type;
v_mat_code1 cms_bdb_mat_erp.mat_code%t
1.我们在插入的类型不匹配,比如数据库里面是数字,我们用日期类型去填充.
2.我们忘数据库中插入的时候,为空的时候不要默认成null,这样数据库就不会出现这个问题啦.
3我花啦几个小时弄出来的问题
create or replace trigger CMS_TRG_MAT_STOR_PRICE
after insert or update
on cms_bdb_mat_erp
for each row
declare
v_mat_sid cms_bdb_mat_erp.sid%type;
v_mat_createdt cms_bdb_mat_erp.created_dt%type;
v_mat_createby cms_bdb_mat_erp.created_by%type;
v_mat_version cms_bdb_mat_erp.version%type;
v_mat_updatedt cms_bdb_mat_erp.updated_dt%type;
v_mat_updateby cms_bdb_mat_erp.updated_by%type;
v_mat_code cms_bdb_mat_erp.mat_code%type;
v_mat_desc cms_bdb_mat_erp.mat_desc%type;
v_mat_price cms_bdb_mat_erp.unit_price%type;
v_mat_count cms_bdb_mat_erp.real_num%type;
v_mat_cost_center_code cms_bdb_mat_erp.cost_center_code%type;
v_mat_cost_center_desc cms_bdb_mat_erp.cost_center_desc%type;
v_mat_code1 cms_bdb_mat_erp.mat_code%t