InterviewSolution
Saved Bookmarks
| 1. |
Explain the truncate in Oracle? |
|
Answer» The TRUNCATE STATEMENT removes all the RECORDS from the table in the ORACLE database. If once the TRUNCATE statement truncate the table then the data cannot be recovered back. ExampleSyntax:- TRUNCATE TABLE table_name |
|