Die Oracle-FAQ sagt:
Sie müssten Ihre Tabelle neu erstellen.
RENAME tab1 TO tab1_old;
CREATE TABLE tab1 AS SELECT id, <the rest of your columns> FROM tab1_old;
Die Oracle-FAQ sagt:
Sie müssten Ihre Tabelle neu erstellen.
RENAME tab1 TO tab1_old;
CREATE TABLE tab1 AS SELECT id, <the rest of your columns> FROM tab1_old;