SQL Server identity種子

來源:互聯網
上載者:User

標籤:blog   http   ar   資料   sp   2014   問題   c   on   

背景:

      用identity修飾列可以使它自動成長

例了:

      create table T(ID int not null identity(1,1),
      Data nvarchar(32));

      插入資料

     declare @i as int =1;
     while(@i<10)
     begin
           insert into T values(replicate(cast(@i as nchar(1)),10))
           set @i = @i +1;
    end

         

        用dbcc checkident(‘Table_Name‘); 查看錶的種子值。

        

        刪除資料:

                    delete from T
                    where ID >1;
                    go

                    dbcc checkident(‘Table_Name‘);--這時種子值還是9

       再次插入資料:

                        insert into T(Data) values(‘AAAA‘); 

       查看資料:

                  

解決方案、

            重設種子值:

                          dbcc checkident(‘T‘,reseed,2);-- 到這一步問題就已經解決了

            插入資料:

                       insert into T(Data) values(‘BBB‘);

            輸出:

                   select * fom T;

                   

重點:

      這個種子值是  2  而表是有一個值是 10 如果一直長下去,會發生什麼事呢?讓我們多插入幾條資料看一下

      插入資料:

                 declare @i as int =1;
                 while(@i<10)
                 begin
                         insert into T values(replicate(‘NNN‘,10))
                         set @i = @i +1;
                 end

      輸出:

            

重點2、

        如果ID是主鍵什麼辦。

       第一步:

                刪除資料         

               delete from T
               where Data like ‘%N%‘
               go

      第二步:

               加主鍵

              alter table T
              add constraint PK_ID primary key(ID);
              go

 

 

 

    

SQL Server identity種子

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

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.