Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: 10.2 Upgrade Information Utility

Re: 10.2 Upgrade Information Utility

From: Hans.Wijte <Hans.Wijte_at_mail.ing.nl>
Date: 21 Dec 2005 05:04:03 -0800
Message-ID: <1135170243.132718.70080@f14g2000cwb.googlegroups.com>

News wrote:
> bdbafh_at_gmail.com a écrit :
>
> > Those packages do not belong in the system schema.
> > Methinks that you executed something at some point connected as system,
> > when you should have connected as "sys as sysdba".
> >
> > I believe that you will find that such objects ALSO exist in the SYS
> > schema, except that over there, they are valid.
> >
> > drop the invalid ones that are wrongly owned by the user system.
> >
> > -bdbafh
>
> Thx this was the problem. I dont know why these packages are in SYSTEM
> schemas. The system has been upgraded many times so these packages have
> been there for long time.
>
> Now concerning temporary tablespace. It's defined this way
>
> CREATE TABLESPACE TEMP
> DATAFILE '.../temp01.dbf' SIZE 32768000K AUTOEXTEND OFF
> EXTENT MANAGEMENT DICTIONARY
> LOGGING
> DEFAULT STORAGE(INITIAL 32M
> NEXT 32M
> MINEXTENTS 1
> PCTINCREASE 0)
> ONLINE
> TEMPORARY
> SEGMENT SPACE MANAGEMENT MANUAL
>
> Oracle Database 10.2 Upgrade Information Utility considers that the
> tablespace is not large enough for the upgrade cause it's not
> AUTOEXTEND ENABLED even after issuing
>
> ALTER DATABASE DATAFILE '.../temp01.dbf' AUTOEXTEND ON NEXT 102400K
> MAXSIZE UNLIMITED ;
>
> I think I should another one. Do you have an idea how it should be
> created ?

  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;
Received on Wed Dec 21 2005 - 07:04:03 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US