ORA-02287此处不允许序号(sequence number not allowed here) 的避免及解决办法

ORA-02287:此处不允许序号(sequence number not allowed here) 的避免及解决办法

原文链接:https://blog.csdn.net/qq525099302/article/details/43053291

问题场景一:
SELECT id,name FROM (select SEQ_B_LOG_ID.NEXTVAL id , 'elong_deo' name from dual);
问题场景二:
insert into b_authority
  (id,role_id,authority,remark,url,yn,parent_id,authority_type,log_flag)
select SEQ_B_AUTHORITY_ID.NEXTVAL,1, 'admin:role:listRole', '角色分页查询', '/admin/role/listRole.htm', 1,210,4, 1 from dual
union
select SEQ_B_AUTHORITY_ID.NEXTVAL,1, 'admin:role:toEditAuthority', '跳转角色权限编辑', '/admin/role/toEditAuthority.htm', 1,210,4, 1 from dual
union
select SEQ_B_AUTHORITY_ID.NEXTVAL,1, 'admin:role:findAuthsByRoleId', '获取角色权限', '/admin/role/findAuthsByRoleId.htm', 1,210,4, 1 from dual
union
select SEQ_B_AUTHORITY_ID.NEXTVAL,1, 'admin:role:updateRoleAuths', '更新角色权限', '/admin/role/updateRoleAuths.htm', 1,210,4, 1 from dual;

出现此提示的原因是oracle不让这样使用,具体说明如下:
Restrictions on Sequence Values You cannot use CURRVAL and NEXTVAL in the

following constructs:
■ A subquery in a DELETE, SELECT, or UPDATE statement
■ A query of a view or of a materialized view
■ A SELECT statement with the DISTINCT operator
■ A SELECT statement with a GROUP BY clause or ORDER BY clause
■ A SELECT statement that is combined with another SELECT statement with the
UNION, INTERSECT, or MINUS set operator
■ The WHERE clause of a SELECT statement
■ The DEFAULT value of a column in a CREATE TABLE or ALTER TABLE statement
■ The condition of a CHECK constrain

问题解决之避免:

所谓的避免指的是不走入oracle序列的禁区,也就是尽量不要符合上述几个情况,通过合理更改SQL语句达到我们的目的。

场景一解决:
SELECT SEQ_B_LOG_ID.NEXTVAL id ,name FROM (select  'elong_deo' name from dual);
场景二解决:
insert into b_authority
  (id,role_id,authority,remark,url,yn,parent_id,authority_type,log_flag)
select SEQ_B_AUTHORITY_ID.NEXTVAL,t.c1,t.c2,t.c3,t.c4,t.c5,t.c6,t.c7 from (select 1 c1, 'admin:role:listRole' c2, '角色分页查询' c3, '/admin/role/listRole.htm' c4, 1 c5,210 c6,4 c7, 1 c8 from dual
union all
select 1, 'admin:role:toEditAuthority', '跳转角色权限编辑', '/admin/role/toEditAuthority.htm', 1,210,4, 1 from dual
union all
select 1, 'admin:role:findAuthsByRoleId', '获取角色权限', '/admin/role/findAuthsByRoleId.htm', 1,210,4, 1 from dual
union all
select 1, 'admin:role:updateRoleAuths', '更新角色权限', '/admin/role/updateRoleAuths.htm', 1,210,4, 1 from dual) t;
问题解决之另类强制执行:

很多oracle语句在使用的时候会有限制,但是Function在大多数情况下没有限制,我们可以通过程序来获取nextval以及currval

  • 获取序列下一个值

    create or replace function get_seq_next (seq_name in varchar2) return number
    is
      seq_val number ;
    begin
      execute immediate 'select '|| seq_name|| '.nextval from dual' into seq_val ;
      return seq_val ;
    end get_seq_next;
    
  • 获取序列当前值(需先执行nextval)

    create or replace function get_seq_curr (seq_name in varchar2) return number
    is
      seq_val number ;
    begin
      execute immediate 'select '|| seq_name|| '.currval from dual' into seq_val ;
      return seq_val ;
    end get_seq_curr;
    
场景一解决:
SELECT id,name FROM (select get_seq_next('SEQ_B_LOG_ID') id , 'elong_deo' name from dual);
场景二解决:
insert into b_authority
  (id,role_id,authority,remark,url,yn,parent_id,authority_type,log_flag)
select get_seq_next('SEQ_B_AUTHORITY_ID'),1, 'admin:role:listRole', '角色分页查询', '/admin/role/listRole.htm', 1,210,4, 1 from dual
union
select get_seq_next('SEQ_B_AUTHORITY_ID'),1, 'admin:role:toEditAuthority', '跳转角色权限编辑', '/admin/role/toEditAuthority.htm', 1,210,4, 1 from dual
union
select get_seq_next('SEQ_B_AUTHORITY_ID'),1, 'admin:role:findAuthsByRoleId', '获取角色权限', '/admin/role/findAuthsByRoleId.htm', 1,210,4, 1 from dual
union
select get_seq_next('SEQ_B_AUTHORITY_ID'),1, 'admin:role:updateRoleAuths', '更新角色权限', '/admin/role/updateRoleAuths.htm', 1,210,4, 1 from dual;
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值