Re: tablespace SYSTEM used by others user, not sys. Help!
From: x <x_at_x.hr>
Date: Thu, 3 Jun 2004 11:38:28 +0200
Message-ID: <c9mrg5$6t5$1_at_ls219.htnet.hr>
Date: Thu, 3 Jun 2004 11:38:28 +0200
Message-ID: <c9mrg5$6t5$1_at_ls219.htnet.hr>
You should move all tables and rebuild all indexes to different tablespace.
alter table my_table move tablespace users;
alter index my_index rebuild tablespace users;
Output of this query is a script which you should run to move all the tables. Do the same for indexes. Received on Thu Jun 03 2004 - 11:38:28 CEST