Eliminar Dados no SQL Server 7
Pessoal,
Tenho uma tabela em SQL Server 7, com autoencremento, gostaria de saber como eu faço para começar a tabela do zero, inclusive o AutoIncremento começando do 1 e assim sucessivamente
Alguém tem alguma dica
Um abraço a todos
Luiz
Tenho uma tabela em SQL Server 7, com autoencremento, gostaria de saber como eu faço para começar a tabela do zero, inclusive o AutoIncremento começando do 1 e assim sucessivamente
Alguém tem alguma dica
Um abraço a todos
Luiz
Camargo
Curtidas 0
Respostas
Fer_nanda
10/06/2004
Gere um script da tabela, dê um drop nela e depois execute o script dela novamente.
GOSTEI 0
Marcus.magalhaes
10/06/2004
Camargo, boa noite.
Utilize o seguinte comando :
DBCC CHECKIDENT
Checks the current identity value for the specified table and, if needed, corrects the identity value.
Syntax
DBCC CHECKIDENT
( ´table_name´
[ , { NORESEED
| { RESEED [ , new_reseed_value ] }
}
]
)
Arguments
´table_name´
Is the name of the table for which to check the current identity value. Table names must conform to the rules for identifiers. For more information, see Using Identifiers. The table specified must contain an identity column.
NORESEED
Specifies that the current identity value should not be corrected.
RESEED
Specifies that the current identity value should be corrected.
new_reseed_value
Is the value to use in reseeding the identity column.
Ex. :
DBCC CHECKIDENT (teste, RESEED, 1)
Utilize o seguinte comando :
DBCC CHECKIDENT
Checks the current identity value for the specified table and, if needed, corrects the identity value.
Syntax
DBCC CHECKIDENT
( ´table_name´
[ , { NORESEED
| { RESEED [ , new_reseed_value ] }
}
]
)
Arguments
´table_name´
Is the name of the table for which to check the current identity value. Table names must conform to the rules for identifiers. For more information, see Using Identifiers. The table specified must contain an identity column.
NORESEED
Specifies that the current identity value should not be corrected.
RESEED
Specifies that the current identity value should be corrected.
new_reseed_value
Is the value to use in reseeding the identity column.
Ex. :
DBCC CHECKIDENT (teste, RESEED, 1)
GOSTEI 0