Yes, that is possible. Try with this

1. Create a new table and copy the data across.

SQL> RENAME tab1 TO tab1_old;
Table renamed.

SQL> CREATE TABLE tab1 AS SELECT 0 AS col1, col1 AS col2...