`
a378836307
  • 浏览: 33806 次
  • 性别: Icon_minigender_1
  • 来自: 福州
社区版块
存档分类
最新评论

oracle批量导出seq

阅读更多
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='HR'
分享到:
评论

相关推荐

Global site tag (gtag.js) - Google Analytics