Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: 10.2 Upgrade Information Utility
Hans.Wijte a écrit :
> 1. Drop your current temp tablespace :
>
> drop tablespace temp;
>
> 2. Create a true temporary tablespace (with TEMPFILE clause) that is
> locally managed :
>
> create temporary tablespace temp
> TEMPfile '..../temp0001.dbf' size 64m
> extent management LOCAL uniform size 1m
> autoextend on next 32m maxsize 128m;
thx ! meanwhile I figured it out. But since we cannot drop default temp tablespace the complete sequence should be:
![]() |
![]() |