Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: Renaming tablespace
On Thu, 3 Sep 1998 17:22:53 +0200, "Manu" <ebontemps_at_altern.org>
wrote:
>Hi,
>
>Does somebody know if it's possible to rename a tablespace without moving
>including objects ?
Yes it is, but it is unsupported by Oracle, because it involves updating tables owned by SYS.
!!! WARNING: you are doing the following at your own risk !!!!
CONNECT SYS/PWD
UPDATE sys.ts$ SET name='NEW_TS_NAME' WHERE name = 'OLD_TS_NAME';
Restart the database (or at least flush the shared pool).
>Thanks for your tips !
>
>Ciao
HTH,
--
Jurij Modic <jmodic_at_src.si>
Certified Oracle7 DBA (OCP)
![]() |
![]() |