InterviewSolution
Saved Bookmarks
| 1. |
What Is The Difference Between Deleting And Truncating Of Tables? |
|
Answer» DELETING a table will not REMOVE the rows from the table but entry is there in the database DICTIONARY and it can be retrieved But truncating a table DELETES it completely and it cannot be retrieved. Deleting a table will not remove the rows from the table but entry is there in the database dictionary and it can be retrieved But truncating a table deletes it completely and it cannot be retrieved. |
|