Background: I want to change a table column from Long to Clob.
- I am not allowed to create/alter tablespaces
- The table has 10M + rows
What i have tried:
Simply alter table from long to clob:
- returns full tablespace error -
ORA-01652
:"unable to extend temp segment by %s in tablespace %s"
- returns full tablespace error -
Export data from table and insert in a new table:
- export just takes too long, at the speed its going now, it will take weeks to export.
- export just takes too long, at the speed its going now, it will take weeks to export.
Running
"insert /*+ APPEND */ into new_table select * from old_table;"
- returns an error -
ORA-00997: "illegal use of LONG datatype"
- returns an error -