What is difference between TRUNCATE and DELETE statement

Answers were Sorted based on User's Feedback



What is difference between TRUNCATE and DELETE statement..

Answer / nadiya

TRUNCATE DELETE DIFFERENCE

Truncate command will delete all records and the most
important thing to make note of

truncate command is since truncate command cannot be rolled
back one must make
sure to take proper backup of table data before performing
the truncate command.

Truncate command is thus used to remove all rows from
either a table or a cluster.

If one wants to use the truncatecommand in a cluster they
can use
it only in an indexed cluster and not in a hash cluster.


Though the functionality of delete and truncate looks on
the outward same

the main differences between truncate and delete statements
are

truncate is a DDL statement whereas
delete is a DML statement.


Truncate command cannot be rolled back but
delete command can be rolled back.


As a result, as explained

before truncate command is faster than delete command.

Another main difference between delete andtruncate command
is

delete command can be used with a where clause to delete
specific rows from a table.

If the where clause is not specified in a delete
statement,
all rows are deleted from the table.

Thus delete command can be used to delete specific or all
rows from a table.
But truncate command deletes all rows from the table.
The general syntax of truncate command is
TRUNCATE TABLE tablename;
For instance if one wished to truncate a table named as
exforsys
it is done by using the command as follows:


TRUNCATE TABLE exforsys;

Is This Answer Correct ?    0 Yes 1 No

What is difference between TRUNCATE and DELETE statement..

Answer / xyz

truncate basically clears the data from the rows of a
specified colomn.
e.g. truncate colomn_name from table_name
then this will only empty the colomn

delete is used to simpy delete anything from the table.
e.g. delete table_name
this will remove the whole table from the database.

Is This Answer Correct ?    9 Yes 28 No

Post New Answer

More SQL Server Interview Questions

you have couple of stored procedures that depend on a table you dropped the table and recreated it what do you have to do to reestablish those stored procedure dependencies?

0 Answers  


which database is best to use in oracle and sql server? explain reasons?

5 Answers   TCS,


What is the difference between cartesian product and cross join?

0 Answers  


How to delete an existing row with delete statements in ms sql server?

0 Answers  


What does <> symbol mean?

0 Answers  






As per your opinion what are the five top responsibilities of a dba? : sql server database administration

0 Answers  


Their are two tables 'A' and'B'.Table 'A' contains 3 columns named 'eid','ename','dept'. Table 'B'contains 3 columns named'sid','designation','salary'. We have to retrieve the names of employees working in the same department,same designation and same salary. Its urgent can anyone help me out in this problem.

6 Answers   Tech Mahindra,


What is stored in the mssqlsystemresource database? : sql server database administration

0 Answers  


Mention the different types of replication in sql server.

0 Answers  


How to generate create table script on an existing table in ms sql server?

0 Answers  


How to provide values to stored procedure parameters in ms sql server?

0 Answers  


How can I know what locks are running on which resource?

0 Answers  


Categories