想修改数据库中某字段的内容(固定数字对应的字段内容),如下:
update P_NBSC_RX_QUAL set
freq_dl_qual5=freq_dl_qual5+round(0.80*freq_dl_qual7,0)
where period_start_time >= to_date(*&start_date*,*yyyymmdd hh24*)
and period_start_time <= to_date(*&end_date*,*yyyymmdd hh24*)
and Bts_Int_Id in (007936,272261);
commit;
执行的时候报错:ORA-28112:failed to execute policy function
同样格式的语句在另外的一张报表就可以执行!请问各位大神怎么解决,感谢!
update P_NBSC_RX_QUAL set
freq_dl_qual5=freq_dl_qual5+round(0.80*freq_dl_qual7,0)
where period_start_time >= to_date(*&start_date*,*yyyymmdd hh24*)
and period_start_time <= to_date(*&end_date*,*yyyymmdd hh24*)
and Bts_Int_Id in (007936,272261);
commit;
执行的时候报错:ORA-28112:failed to execute policy function
同样格式的语句在另外的一张报表就可以执行!请问各位大神怎么解决,感谢!