Si hallas alguna incompatibilidad en tu código o proyecto, recuerda probar siempre en un entorno de testing antes añadir el código al trabajo final.
Ejemplo 1: consulta para vaciar los datos de la tabla en el servidor sql
TRUNCATETABLE table_name;
Ejemplo 2: vaciar una tabla sql
TRUNCATETABLE table_name;
Ejemplo 3: lo que está truncado en sql
DELETE--DML COMMAND
-DeleteRowsfrom the table one by one
-We can usewhere clause withDeletetodelete single row-Deleteis slower than truncate-ROLLBACKis possible withDELETEDROP--DDL COMMAND
-Delete the entire structure orschema-We can't use where clause with drop
-Drop is slower than DELETE & TRUNCATE
-ROLLBACK IS NOT POSSIBLE WITH DROP
TRUNCATE-
-DDL COMMAND
-Truncate deletes rows at a one goal
-We can't usewhere clause withTruncate-Truncate faster than both DELETE&DROP-Rollbackisnot possible withTruncate
Reseñas y calificaciones del artículo
Si estás de acuerdo, tienes el poder dejar un post acerca de qué te ha parecido este enunciado.
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)