Oracle 导出索引Sequence!!
时间:2011-03-21 来源:CoderNet
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='HC-BPMC-MANAGE'
相关阅读 更多 +