Why is insert faster than delete?Which indexing technique works best for Oracle based database?

Showing Answers 1 - 10 of 10 Answers

Rakesh

  • Jul 22nd, 2011
 

Both insert and delete are used for different purposes. Also inserts are not always faster than delete. If the table has got indexes then insert will be slow and delete will be fast (if the WHERE clause uses the indexed column). If the table does not have any indexes then insert will be fast and delete will be slow

  Was this answer useful?  Yes

YASODHA

  • Aug 29th, 2011
 

insert is faster than delete because insert just add values to the table. but delete want to store the deleted data in the memory for future references

  Was this answer useful?  Yes

Give your answer:

If you think the above answer is not correct, Please select a reason and add your answer below.

 

Related Answered Questions

 

Related Open Questions