I want to delete all the data rows in the table, but without dropping the table. The delete statement has a where clause so I have to give one by one for each row. Is there any other way of deleting the whole data rows in the table?
This is Oracle and using sqlplus
It will be better that you drop constraint and then use Truncate command and after getting rid of data , apply the constraint again.