博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
导出oracle序列
阅读量:6081 次
发布时间:2019-06-20

本文共 633 字,大约阅读时间需要 2 分钟。

set serveroutput on;

spool c:\sequence_code.txt;
 
declare
  v_sequence varchar2(4000);
  v_nextval number(38,0);
begin
  for i in (select sequence_name from user_sequences) loop
   select dbms_metadata.get_ddl('SEQUENCE',i.sequence_name,user) into v_sequence from dual;
   execute immediate 'select '||i.sequence_name||'.'||'nextval from dual' into v_nextval;
   v_sequence := substr(v_sequence,1,instr(v_sequence,'START WITH',1,1)+length('START WITH'))||' '||to_char(v_nextval)||' '||
                 substr(v_sequence,instr(v_sequence,'CACHE'))||';';
   dbms_output.put_line(v_sequence);
  end loop;
end;
/
spool off;

转载于:https://www.cnblogs.com/wuxl360/p/6394314.html

你可能感兴趣的文章
Linux中的帮助功能
查看>>
针对Android的Pegasus恶意软件版本和针对iOS的有什么不同?
查看>>
使用MindFusion JavaScript组件与WordPress Elementor插件
查看>>
Android设计应用图标不用愁---Asset Studio Integration来帮你 .
查看>>
Linux 下DNS配置管理
查看>>
收集的Haskell资源
查看>>
Hyper-V 2016 配置管理系列(Part3)
查看>>
IEEE模版写作干货
查看>>
Linux日志管理与分类
查看>>
使用Maven搭建SpringMVC项目
查看>>
Nginx学习之三:对应平台的Nginx下载和安装
查看>>
IPv4地址
查看>>
全局探色器
查看>>
shell入门1
查看>>
dialog
查看>>
Golang HTTP请求代理
查看>>
大麦网疑遭“脱裤” 600余万用户信息被售卖
查看>>
Hive Export和Import介绍及操作示例
查看>>
http://mongoexplorer.com/ 一个不错的 mongodb 客户端工具。。。
查看>>
coreseek使用
查看>>