Go Back   Garayed.com > Oracle
Reply
 
LinkBack Thread Tools Search this Thread Display Modes

EXTEND INDEX
  #1 (permalink)  
Old 07-02-2009, 11:43 PM
CenturionX
 
Posts: n/a
Default EXTEND INDEX

Hello everybody,

I'm working with Oracle 10g on Windows. I got this message:
01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
The tablespace where this index is located had 2.1 MB and it was at
%99.6 of use.

I searched in the web for a solution and i found this:
ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
3000G;

The problem is that the tablespace continues at %99.6 even if the MAX
MB is increased.

How can i solve it?

Thanks.

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #2 (permalink)  
Old 07-03-2009, 03:48 PM
Robert Klemme
 
Posts: n/a
Default Re: EXTEND INDEX

On 03.07.2009 01:43, CenturionX wrote:

> I'm working with Oracle 10g on Windows. I got this message:
> 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> The tablespace where this index is located had 2.1 MB and it was at
> %99.6 of use.
>
> I searched in the web for a solution and i found this:
> ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> 3000G;
>
> The problem is that the tablespace continues at %99.6 even if the MAX
> MB is increased.
>
> How can i solve it?


Did ORA-01654 persist? Did you read documentation about how to
interpret the reported figures about % usage? What did it tell you?

Kind regards

robert


--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #3 (permalink)  
Old 07-03-2009, 03:48 PM
Robert Klemme
 
Posts: n/a
Default Re: EXTEND INDEX

On 03.07.2009 01:43, CenturionX wrote:

> I'm working with Oracle 10g on Windows. I got this message:
> 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> The tablespace where this index is located had 2.1 MB and it was at
> %99.6 of use.
>
> I searched in the web for a solution and i found this:
> ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> 3000G;
>
> The problem is that the tablespace continues at %99.6 even if the MAX
> MB is increased.
>
> How can i solve it?


Did ORA-01654 persist? Did you read documentation about how to
interpret the reported figures about % usage? What did it tell you?

Kind regards

robert


--
remember.guy do |as, often| as.you_can - without end
http://blog.rubybestpractices.com/
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #4 (permalink)  
Old 07-03-2009, 07:03 PM
Mark D Powell
 
Posts: n/a
Default Re: EXTEND INDEX

On Jul 2, 7:43*pm, CenturionX <darwinbaldr...@gmail.com> wrote:
> Hello everybody,
>
> I'm working with Oracle 10g on Windows. *I got this message:
> 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> The tablespace where this index is located had 2.1 MB and it was at
> %99.6 of use.
>
> I searched in the web for a solution and i found this:
> ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> 3000G;
>
> The problem is that the tablespace continues at %99.6 even if the MAX
> MB is increased.
>
> How can i solve it?
>
> Thanks.


Until you actually perform an insert that cause an object to attempt
to allocate another extent which in turn requires the data file to
extend the percentage used for the tablespace is not going to change
unless you issue a command to manually cause the file to extend first.

See the DBA Administration manual which has information on managing
tablespaces, data files, and objects.

HTH -- Mark D Powell --
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #5 (permalink)  
Old 07-03-2009, 07:03 PM
Mark D Powell
 
Posts: n/a
Default Re: EXTEND INDEX

On Jul 2, 7:43*pm, CenturionX <darwinbaldr...@gmail.com> wrote:
> Hello everybody,
>
> I'm working with Oracle 10g on Windows. *I got this message:
> 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> The tablespace where this index is located had 2.1 MB and it was at
> %99.6 of use.
>
> I searched in the web for a solution and i found this:
> ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> 3000G;
>
> The problem is that the tablespace continues at %99.6 even if the MAX
> MB is increased.
>
> How can i solve it?
>
> Thanks.


Until you actually perform an insert that cause an object to attempt
to allocate another extent which in turn requires the data file to
extend the percentage used for the tablespace is not going to change
unless you issue a command to manually cause the file to extend first.

See the DBA Administration manual which has information on managing
tablespaces, data files, and objects.

HTH -- Mark D Powell --
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #6 (permalink)  
Old 07-07-2009, 03:02 PM
CenturionX
 
Posts: n/a
Default Re: EXTEND INDEX

On Jul 3, 3:03*pm, Mark D Powell <Mark.Pow...@eds.com> wrote:
> On Jul 2, 7:43*pm, CenturionX <darwinbaldr...@gmail.com> wrote:
>
>
>
>
>
> > Hello everybody,

>
> > I'm working with Oracle 10g on Windows. *I got this message:
> > 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> > The tablespace where this index is located had 2.1 MB and it was at
> > %99.6 of use.

>
> > I searched in the web for a solution and i found this:
> > ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> > 3000G;

>
> > The problem is that the tablespace continues at %99.6 even if the MAX
> > MB is increased.

>
> > How can i solve it?

>
> > Thanks.

>
> Until you actually perform an insert that cause an object to attempt
> to allocate another extent which in turn requires the data file to
> extend the percentage used for the tablespace is not going to change
> unless you issue a command to manually cause the file to extend first.
>
> See the DBA Administration manual which has information on managing
> tablespaces, data files, and objects.
>
> HTH -- Mark D Powell --- Hide quoted text -
>
> - Show quoted text -


Now it is working.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote

Re: EXTEND INDEX
  #7 (permalink)  
Old 07-07-2009, 03:02 PM
CenturionX
 
Posts: n/a
Default Re: EXTEND INDEX

On Jul 3, 3:03*pm, Mark D Powell <Mark.Pow...@eds.com> wrote:
> On Jul 2, 7:43*pm, CenturionX <darwinbaldr...@gmail.com> wrote:
>
>
>
>
>
> > Hello everybody,

>
> > I'm working with Oracle 10g on Windows. *I got this message:
> > 01654: unable to extend index MASTER.XPK_BR by 256 in tablespace DATA1
> > The tablespace where this index is located had 2.1 MB and it was at
> > %99.6 of use.

>
> > I searched in the web for a solution and i found this:
> > ALTER DATABASE DATAFILE DATAFILE1.DBF' AUTOEXTEND ON NEXT 20M MAXSIZE
> > 3000G;

>
> > The problem is that the tablespace continues at %99.6 even if the MAX
> > MB is increased.

>
> > How can i solve it?

>
> > Thanks.

>
> Until you actually perform an insert that cause an object to attempt
> to allocate another extent which in turn requires the data file to
> extend the percentage used for the tablespace is not going to change
> unless you issue a command to manually cause the file to extend first.
>
> See the DBA Administration manual which has information on managing
> tablespaces, data files, and objects.
>
> HTH -- Mark D Powell --- Hide quoted text -
>
> - Show quoted text -


Now it is working.

Thanks.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply


Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On



All times are GMT. The time now is 12:07 AM.


Powered by vBulletin® Version 3.5.8
Copyright ©2000 - 2010, Jelsoft Enterprises Ltd.
Search Engine Friendly URLs by vBSEO 3.2.0
| Home | FAQ | Members List | Calendar | Today's Posts | Search | New Posts |