首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Oracle Apex Web开发

Oracle Apex Web开发
EN

Stack Overflow用户
提问于 2018-06-09 03:30:01
回答 1查看 116关注 0票数 1

我正在尝试建立一个Oracle Apex网页。我有一个在Db Visualizer中运行的SQL查询,一切正常。它应该获取大约700万条记录,但由于限制了DB Vis中的行数,它只能获取1000条记录。

这是我的SQL查询:

代码语言:javascript
复制
    select t.*, t.rowid from table t
    where  custedp =
           ( select min(custedp) from tablex
             where  fullorderno like substr('${ORD}$',1,8) || '%' );

我尝试通过一个页面项P2_new输入ORD变量,所以我的新SQL查询是

代码语言:javascript
复制
    select t.*, t.rowid from table t
    where  custedp = 
           ( select min(custedp) from tablex
             where  fullorderno like substr(:P2_new,1,8) || '%' );

我在网页新建(静态内容),页面项目(文本字段) p2_new和按钮提交中创建了一个区域,该区域将提交页面。在此之前,当我将新区域从页面根本不加载的静态内容更改为经典报表时,一切都很好。它有一个装载的..。在选项卡和地址栏上显示“关于:空白”。我尝试验证代码,它还向我展示了一个

代码语言:javascript
复制
     ajax call returned server error ora-20001 :error at line 1 error when I 
     tried to validate the code using the in built validator .
EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/50767289

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档