Tjaaaa - du spørger om at slette 800000 poster, og Idanielsen er i gang med at kigge i bogen.
Hvis du skulle slette alle poster (jeg ved jo ikke om 800000 kun er en delmængde at denne tabels data), kunne du jo bruge TRUNCATE kommandoen i stedet. Men det ved du garanteret.....
Helt eksperimentelt, fra Books Online for MSSQL 7.0, samt fra min syge hjerne:
EXEC sp_dboption \'databasenavn\', \'trunc. log on chkpt.\', \'true\'
Skulle sætte at loggen bliver skrevet til databasen på hvert checkpoint.
DECLARE @Done bit SELECT @Done = 0 WHILE @Done = 0 BEGIN DELETE TOP 10000 ..../*Vælg de øverste 10.000 poster f.eks*/ CHECKPOINT /*Dette truncater loggen /*Find ud af om der er flere og sæt @Done = 1 hvis der ikke er END
Jeg er ikke sikker på syntaksen eller noget, T-SQL er stadig lidt nyt for mig
TRUNCATE TABLE is functionally identical to DELETE statement with no WHERE clause: both remove all rows in the table. But TRUNCATE TABLE is faster and uses fewer system and transaction log resources than DELETE.
The DELETE statement removes rows one at a time and records an entry in the transaction log for each deleted row. TRUNCATE TABLE removes the data by deallocating the data pages used to store the table’s data, and only the page deallocations are recorded in the transaction log.
TRUNCATE TABLE removes all rows from a table, but the table structure and its columns, constraints, indexes and so on remain. The counter used by an identity for new rows is reset to the seed for the column. If you want to retain the identity counter, use DELETE instead. If you want to remove table definition and its data, use the DROP TABLE statement.
You cannot use TRUNCATE TABLE on a table referenced by a FOREIGN KEY constraint; instead, use DELETE statement without a WHERE clause. Because TRUNCATE TABLE is not logged, it cannot activate a trigger.
Examples This example removes all data from the authors table.
Ja. Du kan roligt bruge TRUNCATE uden log-problemer....men det ved du jo godt nu.....
Synes godt om
Ny brugerNybegynder
Din løsning...
Tilladte BB-code-tags: [b]fed[/b] [i]kursiv[/i] [u]understreget[/u] Web- og emailadresser omdannes automatisk til links. Der sættes "nofollow" på alle links.