总是忘记对序列的操作,特将此记录下来。

1、直接drop sequence seq_t_test;然后重新创建并且设置序列的初始值为希望的数据

SQL:
drop sequence seq_t_test;
create sequence seq_t_test;
increment by 1
start with 1//你想要的值
maxvalue 999999999;

2、修改序列的每次增加的值,然后再修改回每次自增1

比如将每次只自增1修改为99这样,做一次nextval也能得到预想的值,然后再将每次自增再次修改为1;
SQL:
alter sequence seq_t_test increment by n;     //n为做自增能够达到预想的值
做一次select seq_t_test.nextval from dual;
再将序列的值修改回去alter sequence seq_t_test increment by 1;

总是忘记对序列的操作,特将此记录下来。1、直接drop sequence seq_t_test;然后重新创建并且设置序列的初始值为希望的数据SQL:drop sequence seq_t_test;create sequence seq_t_test;increment by 1start with 1//你想要的值maxvalue 999999999;2、修改序列的每次增加...
npm 全称Node Package Manager,是node.js的模块依赖管理工具。由于 npm 的源在 国外 ,所以 国内 用户使用起来各种不方便。下面整理出了一部分 国内 优秀的 npm 镜像 资源, 国内 用户可以选择使用。 国内 优秀 npm 镜像 淘宝 npm 镜像 搜索地址:https:// npm .taobao.org/ registry地址:https://registry. npm .taobao.org/ c npm js 镜像 搜索地址:https://c npm js.org/ registry地址:https://r
1、没有安装 npm ,先到node官网下载安装node.js(自带 npm )。 2、按win+r,输入cmd,打开dos命令。 3、输入 npm get registry:查看当前 镜像源 为 http://registry. npm taobao.org/ 4、输入 npm config set registry xxx( 镜像源 地址)。 内网 镜像 为例: npm config set registry http://xx.xx.xx.xx:8081/repository/ npm -group/ C:\workcode\vu
p npm config get registry // 切换 淘宝源 p npm config set registry http://registry. npm .taobao.org p npm install 包 // p npm i 包 p npm add 包 // -S 默认写入dependencies p npm . java.lang.IllegalArgumentException: Your InputStream was neither an OLE2 stream, nor an OOXML stream 24403