暂无图片
暂无图片
暂无图片
暂无图片
暂无图片

导出全部Sequence

原创 章芋文 2012-08-02
579
select 'create sequence '||sequence_name||
' minvalue '||min_value||
' maxvalue '||max_value||
' start with '||last_number||
' increment by '||increment_by||
(case when cache_size=0 then ' nocache' else ' cache '||cache_size end) ||';'
from dba_sequences where sequence_owner='FWD'


create sequence SEQ_SALESTRACKCOMPARE_INDEX minvalue 1 maxvalue 99999999999999999999 start with 41 increment by 1 cache 20;
create sequence SEQ_SALESTRACK_INDEX minvalue 1 maxvalue 99999999999999999999999 start with 551382 increment by 1 cache 20;
create sequence FS_APPMENUS_INDEX minvalue 1 maxvalue 9999999999999999 start with 1 increment by 1 cache 20;
create sequence FS_APPROLES_INDEX minvalue 1 maxvalue 999999999999999 start with 41 increment by 1 cache 20;
create sequence FS_ROLEMENUS_INDEX minvalue 1 maxvalue 9999999999999999 start with 300 increment by 1 cache 20;
create sequence FS_USER_INDEX minvalue 1 maxvalue 999999999999999 start with 1020 increment by 1 cache 20;
create sequence QUEST_SOO_AT_SEQUENCE minvalue 1 maxvalue 999999999999999999999999999 start with 1 increment by 1 cache 20;
create sequence SEQ_OPERLOG_AUTOID minvalue 1 maxvalue 999999999999999999 start with 335461 increment by 1 cache 20;
create sequence SEQ_DTIIMPORTLOG_AUTOID minvalue 1 maxvalue 999999999999999999999999 start with 11563 increment by 1 cache 20;
「喜欢这篇文章,您的关注和赞赏是给作者最好的鼓励」
关注作者
【版权声明】本文为墨天轮用户原创内容,转载时必须标注文章的来源(墨天轮),文章链接,文章作者等基本信息,否则作者和墨天轮有权追究责任。如果您发现墨天轮中有涉嫌抄袭或者侵权的内容,欢迎发送邮件至:contact@modb.pro进行举报,并提供相关证据,一经查实,墨天轮将立刻删除相关内容。

评论