USE [veritabanı adınızı yazın]
GO
--tablo içindekilerin tümünü silecek komut
delete from [tablo adınızı yazın]
truncate table [tablo adınızı yazın]
--eğer bir ilişki yoksa tablolar arasında yukarıdaki truncate komutu yeterli olacaktır id sıfırlamaya
--ama eğer ilişki varsa tablolar arasında bu komut yorum haline getirilecek ve
--aşağıdaki komutun çalıştırılması gerekmektedir.
--köşeli parantezleri kullanmayın.
DBCC CHECKIDENT ('[tablo adınızı yazın]', RESEED, 0 )
USE [database name]
GO
--command to delete all table contents
delete from [table name]
truncate table [table name]
- If you do not have a relationship between the tables above the truncate command will suffice to reset the id
- If there is a relationship between these tables, this command will be commented and
- The following command must be executed.
- do not use brackets.
DBCC CHECKIDENT ('[table name]', RESEED, 0 )
Hiç yorum yok:
Yorum Gönder