首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 数据库 > 其他数据库 >

Oracle 复原序列

2012-08-22 
Oracle 还原序列declarennumber(10)tsqlvarchar2(100)beginselectSEQ_APP_INFO_ADBIT_ID.nextvalintonfr

Oracle 还原序列

declaren   number(10);tsql   varchar2(100);beginselect   SEQ_APP_INFO_ADBIT_ID.nextval   into   n   from   dual;n:=-(n-1);tsql:= 'alter   sequence   SEQ_APP_INFO_ADBIT_ID   increment   by '||   n;execute   immediate   tsql;select   SEQ_APP_INFO_ADBIT_ID.nextval   into   n   from   dual;tsql:= 'alter   sequence   SEQ_APP_INFO_ADBIT_ID   increment   by   1 ';execute   immediate   tsql;end; 

?

热点排行