|
Re: accidental creation of tables in system tablespace [message #62689 is a reply to message #62688] |
Mon, 09 August 2004 15:56 |
andrew again
Messages: 2577 Registered: March 2000
|
Senior Member |
|
|
Sure, just move the table and it's indexes to your new tablespace. The indexed must be rebuilt because the rowid's change when you move the table.
alter table emp move tablespace users;
alter index emp_pk rebuild tablespace users;
Of course you should also make sure that the user no longer has the privs to create anything in system TS.
|
|
|