【发布时间】:2011-06-10 09:34:28
【问题描述】:
我有简单的报告(非交互式)。当我尝试从其支持的 sql 查询中删除列时,它会引发异常
ORA-01476: 除数为零
UPD:我尝试删除 a.page_name 并保存报告后引发异常
select a.page_name,a.page_id, b.report_name
from APEX_WORKSPACE_ACTIVITY_LOG a, reports b, APEX_APPLICATION_PAGE_IR c
where
c.interactive_report_id = b.interactive_report_id
and c.page_id = a.page_id
and a.apex_user = :APP_USER --NVL(v('APP_USER'), USER)
and a.application_id = '157'
【问题讨论】:
-
需要更多信息 - 当您运行页面或尝试将更改保存到 SQL 时是否会发生此错误?你能发布SQL吗?
-
@tony-andrews 我更新了问题
标签: oracle oracle-apex