Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


what is differnece between DROP TABLE & DELETE TABLE .

Answers were Sorted based on User's Feedback



what is differnece between DROP TABLE & DELETE TABLE ...

Answer / samir kumar sahoo.

in DROP TABLE command it will remove the table containts as
well as table structure from the database catalog, also it
release all the storage space it has acquired previously.
we can't rollback it as it is a ddl command.

but in case of DELETE TABLE command it just delete all the
records but not relaese the spaces it acquires .it can be
rollback as it is a dml command.

Is This Answer Correct ?    17 Yes 0 No

what is differnece between DROP TABLE & DELETE TABLE ...

Answer / durga prasad

drop table deletes the entire structure from the database
and it also removes entry from syscat.tables. but where as
delete table only deletes the rows in the table.

Is This Answer Correct ?    8 Yes 2 No

what is differnece between DROP TABLE & DELETE TABLE ...

Answer / santy

DROP TABLe deletes the entire Structure of the TABLE from
the database with all the datas it contain, DELETE TABLE
deletes only the rows of the TABLE.

Is This Answer Correct ?    7 Yes 3 No

what is differnece between DROP TABLE & DELETE TABLE ...

Answer / siri

Drop : Drop table command it will remove table structure of the data base.....we can't rollback...
SYNTAX :- DROP TABLE TABLE-NAME..

DELETE : Delete table command it will delete rows from the table...for example i want delete empname in employee table i will write the query is.....
SYNTAX :- DELETE EMPNAME FROM EMPLOYEE

Is This Answer Correct ?    1 Yes 0 No

Post New Answer

More DB2 Interview Questions

What is the syntax required for the creation of a cursor?

1 Answers  


Why cursor is used in db2?

0 Answers  


what is the soft code for deadlock ?

2 Answers   Logica CMG,


where can we use index and subscript ? with example ?

3 Answers   CTS,


What is package versioning? Please give an example.

1 Answers  


What are the isolation levels possible ?

3 Answers  


How do I add a column to an existing table in db2?

0 Answers  


Can you tell me how can you find out the # of rows updated after an update statement?

0 Answers  


Which command is used to remove all rows from a table?

0 Answers  


What is tablespace?

3 Answers  


What is a trigger in the db2 database?

0 Answers  


What's the difference between DB2 active log and archive log? Thanks a lot...

2 Answers   IBM,


Categories