ORA-02283: 無法變更啟動序號

來源:互聯網
上載者:User

如果想更新一個序列的start with值,是不可以直接更改的,會報錯:

SQL> alter sequence seq_xxrs start with 1000;

alter sequence seq_xxrs start with 1000

ORA-02283: 無法變更啟動序號

那麼,如何增加一個序列的值呢?可以採用更改increment by的方式更改:

1.更改increment為一個你想讓序列增加到的值

alter sequence seq_xxrs increment by 1000;

2.執行一次查詢序列的語句

select seq_xxrs.nextval from dual;

3.然後將increment改回來

alter sequence seq_xxrs increment by 1;

此時的序列的值就增大了。

GoldenGate不使用資料泵完成Oracle-Oracle的雙向複製

使用GoldenGate的資料泵進行Oracle-Oracle的單向複製

如何對 Oracle 資料泵(expdp/impdp) 進行 debug

Oracle 資料庫匯出資料泵(EXPDP)檔案存放的位置

Oracle 10g 資料泵分區表的匯出

相關文章

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.