http://bugs.koha-community.org/bugzilla3/show_bug.cgi?id=12488
wajasu <[email protected]> changed: What |Removed |Added ---------------------------------------------------------------------------- CC| |[email protected] --- Comment #4 from wajasu <[email protected]> --- FYI: If we move to DELETE FROM it will take longer as its a DML command and can be rolled back. TRUNCATE is a DDL command and is autocommitted, recreating the tables and indexes, with AUTO_INCREMENT starting over. So we must consider if we want to reset AUTO_INCREMENT on the table when using DELETE FROM as well. ( ALTER TABLE thetable AUTO_INCREMENT = 1 ). Also, an understanding of bulkimport.pl and the implications for folks with huge imports, and the resulting rollback support. -- You are receiving this mail because: You are watching all bug changes. _______________________________________________ Koha-bugs mailing list [email protected] http://lists.koha-community.org/cgi-bin/mailman/listinfo/koha-bugs website : http://www.koha-community.org/ git : http://git.koha-community.org/ bugs : http://bugs.koha-community.org/
