View Single Post
  #8 (permalink)  
Old 08-03-2007, 01:31 PM
Murali Murali is offline
D-Web Master
 
Join Date: Feb 2007
Location: India-Chennai.
Posts: 386
Murali is on a distinguished road
Send a message via AIM to Murali
Default Re: What is Bulk Insert in sql?

Hi,

Delete Command with where CLAUSE will delete specified records,
but Delete Command without where CLAUSE will delete all rows from the table.

For Ex:
DELETE FROM Table Where <Condition>;
DELETE FROM Table;


If u want to delete all the datas permanently from the table use TRUNCATE Command.

May be this helps u in the
Difference between DELETE and TRUNCATE commands.

Did u mean the Bulk Delete insense of deleting all rows from the table?
__________________
-Murali..

Last edited by Murali : 08-03-2007 at 01:45 PM.
Reply With Quote