ORA-01408: such list already indexed column.

Hi all

I get this error while improving my EBS 11.1.0.7 database at 11.2.0.4. I checked the newspaper and it shows:

create indexes system.repcat$ _audit_column_f2_idx on

2 system.repcat$ (base_sname, base_oname, base_conflict_type_id, _audit_column

3 base_reference_name)

4.

System.repcat$ (base_sname, base_oname, base_conflict_type_id, _audit_column

*

ERROR on line 2:

ORA-01408: such list already indexed column.

Now what I want to know is if I have to cancel the session dbua, start the database, delete the index and dbua session start again?

Kind regards

Vinod

The solution is already documented here:

http://docs.Oracle.com/CD/E11882_01/server.112/e23633/upgrade.htm#UPGRD52647

The solution is to drop the REPCAT$_AUDIT_COLUMN_IDX1 Directory and re-run the upgrade as described in "re-run the upgrade to Oracle Database".

Tags: Database

Similar Questions

  • The index of the bitmap on an already indexed attribute

    Hi all

    I am trying to create an index of vector on a (A1) attribute that is already a part of the non-unique clustered index. for example indexes (A1, A2, and A3) that is not unique.

    I get the below error:
    Error from line 14 in order:
    create index bitmap on acdelco_master (APPLICATION_NAME) idx_app_nm
    Error in the command line column: 14:49
    Error report:
    SQL error: ORA-01408: such list column already indexed
    01408 00000 - 'such list column already indexed.
    * Cause:
    * Action:

    When I look in the docs of Pracle on the bitmap index, I find the below

    Restrictions on the Bitmap index Bitmap indexes are subject to the following restrictions:

    •You cannot specify bitmap during the creation of a global partitioned index.

    •You cannot create an index secondary bitmap on a table held in index unless held in index table has a table mapping associated with it.

    •You cannot specify both UNIQUE and BITMAP.

    •You cannot specify a BITMAP for a domain index.
    (http://docs.oracle.com/cd/B19306_01/server.102/b14200/statements_5010.htm)

    No idea why I'm not able to create a bitmap index?

    See: http://asktom.oracle.com/pls/apex/f?p=100:11:0:P11_QUESTION_ID:42797723001361

  • ORA-02374: error loading conversion table / ORA-12899: value too large for column

    Hi all.

    Yesterday I got a dump of a database that I don't have access and Production is not under my administration. This release was delivered to me because it was necessary to update a database of development with some new records of the Production tables.

    The Production database has NLS_CHARACTERSET = WE8ISO8859P1 and development database a NLS_CHARACTERSET = AL32UTF8 and it must be in that CHARACTER set because of the Application requirements.

    During the import of this discharge, two tables you have a problem with ORA-02374 and ORA-12899. The results were that six records failed because of this conversion problem. I list the errors below in this thread.

    Read the note ID 1922020.1 (import and insert with ORA-12899 questions: value too large for column) I could see that Oracle gives an alternative and a workaround that is to create a file .sql with content metadata and then modifying the columns that you have the problem with the TANK, instead of BYTE value. So, as a result of the document, I done the workaround and generated a discharge .sql file. Read the contents of the file after completing the import that I saw that the columns were already in the CHAR value.

    Does anyone have an alternative workaround for these cases? Because I can't change the CHARACTER set of the database the database of development and Production, and is not a good idea to keep these missing documents.

    Errors received import the dump: (the two columns listed below are VARCHAR2 (4000))

    ORA-02374: error loading «PPM» conversion table "" KNTA_SAVED_SEARCH_FILTERS ".

    ORA-12899: value too large for column FILTER_HIDDEN_VALUE (real: 3929, maximum: 4000)

    "ORA-02372: row data: FILTER_HIDDEN_VALUE: 5.93.44667. (NET. (UNO) - NET BI. UNO - Ambiente tests '

    . . imported "PPM". "' KNTA_SAVED_SEARCH_FILTERS ' 5,492 MB 42221 42225-offline

    ORA-02374: error loading «PPM» conversion table "" KDSH_DATA_SOURCES_NLS ".

    ORA-12899: value too large for column BASE_FROM_CLAUSE (real: 3988, maximum: 4000)

    ORA-02372: row data: BASE_FROM_CLAUSE: 0 X '46524F4D20706D5F70726F6A6563747320700A494E4E455220 '.

    . . imported "PPM". "' KDSH_DATA_SOURCES_NLS ' lines 229 of the 230 308.4 KB

    Thank you very much

    Bruno Palma

    Even with the semantics of TANK, the bytes for a column VARCHAR2 max length is 4000 (pre 12 c)

    OLA Yehia makes reference to the support doc that explains your options - but essentially, in this case with a VARCHAR2 (4000), you need either to lose data or change your data type of VARCHAR2 (4000) to CLOB.

    Suggest you read the note.

  • Addition of virtual column: ORA-12899: value too large for column

    I am using Oracle 11g, OS Win7, SQL Developer

    I'm trying to add the virtual column to my test table, but get ORA-12899: value too large for column error. Here are the details.
    Can someone help me in this?
    CREATE TABLE test_reg_exp
    (col1 VARCHAR2(100));
    
    INSERT INTO test_reg_exp (col1) VALUES ('ABCD_EFGH');
    INSERT INTO test_reg_exp (col1) VALUES ('ABCDE_ABC');
    INSERT INTO test_reg_exp (col1) VALUES ('WXYZ_ABCD');
    INSERT INTO test_reg_exp (col1) VALUES ('ABCDE_PQRS');
    INSERT INTO test_reg_exp (col1) VALUES ('ABCD_WXYZ');
    ALTER TABLE test_reg_exp
    ADD (col2 VARCHAR2(100) GENERATED ALWAYS AS (REGEXP_REPLACE (col1, '^ABCD[A-Z]*_')));
    
    SQL Error: ORA-12899: value too large for column "COL2" (actual: 100, maximum: 400)
    12899. 00000 -  "value too large for column %s (actual: %s, maximum: %s)"
    *Cause:    An attempt was made to insert or update a column with a value
               which is too wide for the width of the destination column.
               The name of the column is given, along with the actual width
               of the value, and the maximum allowed width of the column.
               Note that widths are reported in characters if character length
               semantics are in effect for the column, otherwise widths are
               reported in bytes.
    *Action:   Examine the SQL statement for correctness.  Check source
               and destination column data types.
               Either make the destination column wider, or use a subset
               of the source column (i.e. use substring).
    When I try to, I get the correct results:
    SELECT col1, (REGEXP_REPLACE (col1, '^ABCD[A-Z]*_'))
    FROM test_reg_exp;
    Thank you.

    Yes, RP, it works if you give col2 size > = 400.

    @Northwest - could you please test the same w/o having a clause of regex in col2?
    I have a doubt about using a REGULAR expression in this case Dynamics col.

    Refer to this (might help) - http://www.oracle-base.com/articles/11g/virtual-columns-11gr1.php
    Below excerpt from above link... see if that helps...
    >
    Notes and restrictions on the virtual columns include:

    The indexes defined on the virtual columns are equivalent to a function-based index.
    Virtual columns can be referenced in the updates and deletions WHERE clause, but they cannot be manipulated by DML.
    The tables containing virtual columns may still be eligible for result caching.
    Functions in expressions must be deterministic when the table is created, but can then be recompiled and non-deterministic without for as much invalidate the virtual column. In such cases, the following steps must be taken after the function is recompiled:
    Constraint on the virtual column must be disabled and re-enabled.
    On the virtual column indexes must be rebuilt.
    Materialized views that access the virtual column must be fully refreshed.
    The result cache must be flushed if the virtual column acceded to the request (s).
    Statistical table must be regathered.
    The virtual columns are not supported for the organized and external object in index, cluster or temporary tables.
    The expression used in the virtual column definition has the following restrictions:
    It cannot refer to another virtual column by name.
    It can refer to the columns defined in the same table.
    If it refers to a deterministic user-defined function, it cannot be used as a partitioning key column.
    The result of the expression must be a scalar value. It cannot return that an Oracle supplied the data type, a type defined by the user, LOB or LONG RAW.
    >

    Published by: Vanessa B on October 16, 2012 23:48

    Published by: Vanessa B on October 16, 2012 23:54

  • "This file has no program associated with it for performing this action. Please install a program or, if such is already installed, create an association in the default programs control panel. »

    When I click on the browser icon in the task bar or try to run Explorer in the Quick Start menu, I get the error

    "This file has no program associated with it for performing this action. Please install a program or, if such is already installed, create an association in the default programs control panel. "But I can't find that explore registered in the default programs list.

    The guy from Solution Explorer

    I think I have this time. See repair error file Association at the launch of Windows Explorer in Windows 7. We were close, however.

    Ramesh Srinivasan . The Winhelponline Blog
    Microsoft MVP, Windows desktop experience

  • Explorer.exe: "this file doesn't have a program associated with it for performing this action. Please install a program or, if such is already installed, create an association in the default programs control panel. »

    I find this weird problem affecting that explorer.exe and not any other .exe files. When I open explorer.exe in the taskbar or the C:\Windows\explorer.exe, the dialog box opens and indicates "this file does not have a program associated with it for performing this action. Please install a program or, if such is already installed, create an association in the default programs control panel. ». The control panel default programs Dosen t State .exe in the list of protocols and I find it complicated to press the windows logo and click computer each time. Please tell me that there is a way to solve this problem by means of edit this record.

    I have not tried running sfc/scannow then chkdsk/f, two found no error.

    -------------------------------------------------------------------------

    Name of the operating system Microsoft Windows 7 Ultimate
    Version 6.1.7600 Build 7600
    Manufacturer of operating system Microsoft Corporation
    System Type X 86-based PC
    Processor Intel (r) Core (TM) 2 CPU Quad Q9300 @ 2.50 GHz, 2500 Mhz, 4 Lossnay, 4 logical processors
    Windows directory C:\Windows
    System directory C:\Windows\system32
    Boot Device \Device\HarddiskVolume1
    Locale Singapore
    Hardware Abstraction Layer Version = "6.1.7600.16385".
    Normal time zone schedule Malay Peninsula
    Installed RAM GB 5,00
    3.00 GB total physical memory
    936 MB available physical memory
    12.5 GB total virtual memory
    9,88 GB available virtual memory
    Page file space GB 9.47
    Paging file C:\pagefile.sys

    Hello brandongwh,

    Check out the post here for help with a solution that should help your problem with Explorer.exe.

    If this does not help, then please reply back and let us know.

    Thank you

    Marilyn
    Microsoft Answers Support Engineer
    Visit our Microsoft answers feedback Forum and let us know what you think

  • ORA-12899: value too large for column

    Hi Experts,

    I get data of erp in the form of feed systems, in particular a column length in animal feed is only 3.

    In the column of the target table was also length is VARCHAR2 (3)

    but when I try to load even in db it showing errors such as:

    ORA-12899: value too large for column
    emp_name (population: 4, maximum: 3)

    I use the version of database:
    Oracle Database 11g Express Edition Release 11.2.0.2.0 - Production

    but it is solved when the time to increase the length of the column target for varchar2 (5) of VARCHAR2 (3)... but I checked the length of this column in the feed is only 3...


    My question is why we need to increase the length of target column?


    Thank you
    Surya

    Oracle Database 11 g Express Edition uses the UTF-8 character set.

  • ORA-02046: distributed transaction already started

    Hello
    I've written a PL/SQL procedure, which is the insertion of records in a remote table in another database via dblink. First, the procedure works well, but when I try to run once a second, it gives me following error:

    ORA-02046: distributed transaction already started

    Y at - it a solution or a workaround?

    Thanks and greetings

    Please do a favor and give me a small example of this DBMS_SESSION. CLOSE_DATABASE_LINK.

    Here are the ways links could be closed

    (A) that the session that opened the database link can close it...
    Database connection are closed when the session is closed...
    Select * from dba_DB_LINKS---> will show links to database created
    V$ DBLINK will be lists all links data base open and active in your session...

    For an indication of how long the dblink has been opened, run:
    Select s.sid, s.username, s.machine, t.addr, s.status,
    (sysdate - to_date (t.start_time, "MM/DD/YY HH24:MI:SS')) * 24 as hours_active"))
    v $ transaction t, v$ session s
    where t.addr = s.taddr;

    How do I know if a transaction is local or distributed?
    Check v$ global_transaction

    (B) using the ALTER SESSION or explicitly by using the command:

    change the connection to session database ;
    or use the following package:
    DBMS_SESSION.close_database_link ();

    (C) it is also posible to put idle limit user under which connects dblink.
    On the side Server dblink (dblink target) question:

    Create profile Pattente idle limit 5; -5 minutes
    change user profile Pattente test; -According to which the user connects dblink
    ALTER system set resource_limit = true; -must be set to work idle limit
    (or add resource_limit = true init.ora, or both)

    Also check

    DBMS_SESSION. CLOSE_DATABASE_LINK

    Concerning
    Rajesh

  • ORA-00955: name is already used by an existing object

    I dropped a table using DROP TABLE admin CASCADE CONSTRAINTS PURGE

    I then run a CREATE TABLE and then a CREATE INDEX command using fields 1.

    But the CREATE INDEX fails with an ORA-00955: name is already used by an existing object error.

    How can this be? If I let off the table, is not also delete the index?

    Any help would be greatly appreciated.

    Kind regards
    Marty

    Yes... That is the question.

    Kind regards
    JO

  • Gather_table_stats with a method to opt "for all indexed columns 0 size.

    I have 9 databases that I support that contain the same structure and concentrations of very similar data. We are seeing inconsistent performance in various databases due to bind variable peeking... I went down to the Min and Max values are collected during the analysis. I analyze from a cluster and these statistics of export/import in other groups... I will then on locking down the statistics collected. Some statistics are on tables that contain transient data (either purged old data and new data gets a new sequence number of PK).

    Since I am collecting statistics with a ' for ALL INDEXED COLUMNS SIZE 1', a min and max value entered. " This value is only appropriate for a short period of time and only for a specific database. I don't want oracle to know the density to help calculate, but I don't want cardinality from knowing if the current values for bind fall into this range of...

    Example of

    COLUMN PK

    When I analyze the min is 1 and max 5. I then let the database executed as well as the new min is 100 max 105... the same number of lines, but different min/max first select * table where pk > = 1 and pk < = 5 return cardinality of 5... Later, a select * table where pk > = 100 and pk < = 105 would return a cardinaility 1.

    Any ideas how to prevent this, other than to try the value min and max something myself (like min = 1 max = 99999999). ??

    MarkDPowell wrote:
    The SIZE of 1 means no histograms. Bind variable peeking must be done if you have histograms on the column, then you are sure that the problem is bind variable peeking?

    Mark,

    bind variable peeking has nothing to do with histograms, it is always performed so active and performs a hard analysis: http://jonathanlewis.wordpress.com/2006/12/11/bind-peeking/

    Of course, it is interconnected with histograms since these may introduce issues with equal comparisons, requiring different plans but are shared because of using bind variables (solved in 11 g adaptive cursor sharing with).

    Note that when the use of range comparisons even the pre - 10g release already checked the min/max values, it is only the equality comparison that checks the values min/max of 10g on.

    To the OP: collection of statistics using «For ALL INDEXED COLUMNS»... "is a bad idea in general, see for example: http://structureddata.org/2008/10/14/dbms_stats-method_opt-and-for-all-indexed-columns/

    If you use bind variable and range from comparisons then you will probably need to manipulate the statistics yourself / use advice if you cannot afford to collect statistics often enough to deal with changes.

    Kind regards
    Randolf

    Oracle related blog stuff:
    http://Oracle-Randolf.blogspot.com/

    SQLTools ++ for Oracle (Open source Oracle GUI for Windows):
    http://www.sqltools-plusplus.org:7676 /.
    http://sourceforge.NET/projects/SQLT-pp/

  • Help! Get 9 columns in a list box 8 column.

    Hello

    I created a program that controls an environmental to room. For now, I do the part that creates and modifies profiles (ProfileEditor.vi), and somehow I seem to become 9 columns on a list box 8 column. I suspect that it's somewhere in my StepEditor.vi, but I don't see the logic. Can you see what I'm missing?

    Thank you

    Simon

    You must specify the table to group items how you want, the default value is new, as you have discovered. Just right-click on it and set it to 8.

  • This file does not have a program associated with it for performing this action. Please install a program or, if such is already installed, create an association in the default programs control panel

    Hello-

    I'm looking for here (or get) help directed to the right forum regarding an error message I got when trying to open a PDF file.  The error message indicates "this file does not have a program associated with it for performing this action.  Please install a program or, if such is already installed, create an association in the default programs control panel. "To be quite honest, I don't have the slightest idea as to what to do with respect to this message and I need some advice ASAP.  I have the latest Adobe Acrobat Reader installed and if I have to contact them instead about my problem, please let me know.

    LeeBee

    Hi Leroy,

    I would like to know some information about the problem so that we can help you better.

    The question is specific to the PDF files?

    Thank you for details on the issue.

    I also know that the inconvenience that you are experiencing because of the problem mentioned. I will definitely help you.

    This problem may occur if the exact program is not associated with the file you are trying to open.

    I suggest you to set default programs and associate a file type with a program properly.

    Please see this link:
    Change programs that Windows 7 uses by default
    https://support.Microsoft.com/en-us/help/18539/Windows-7-change-default-programs

    I hope this information helps.

    Please let us know if you need more help.

    Thank you

  • error: there is no associated messaging program to perform the requested action. Install an e-mail program or, if such is already installed, create an association in the default programs control panel

    Installed Windows7 Enterprise (evaluation) 32 bits have a database custom (32 bit) when I press the close button, an e-mail icon in the taskbar - nothing happens with the program except the screen turns off, when you press the email icon it is an error message - there is no associated messaging program to perform the requested action. Install an e-mail program or, if such is already installed, create an association in the default programs control panel

    There is no email function associated with the close button

    using the close button of other windows in the work of database correctly.

    TBird is installed and works well

    Have solved the problem - the app was looking for a MAPI - outlook installed e-mail client and not more errors. Thank you much for the help

  • Help to create the view - error: ORA-00955: name is already used by an existing object

    Hello

    I am trying to create the following view but sqlplus displays a message and point of view has not been created. I use 11g Express.

    SQL > create view (client, f_pedido, total) orders as

    2     (

    3 select usr, date, sum (rising) as important

    4 of

    5             (

    6 select lineas_any.usuario as usr, lineas_any.fecha_pedido as date, lineas_any.cantidad * as rising referencia.precio

    7 of lineas_any

    inner join 8

    referencia 9

    10 on lineas_any.referencia = referencia.codbarras

    11             )

    Group 12 by usr, date

    13)

    14 order by date asc, usr;

    of lineas_any

    *

    ERROR on line 7:

    ORA-00955: name is already used by an existing object

    There are also descriptions of the two tables involved:

    SQL > describe lineas_any

    Name                                          Null?    Type

    ------------------------------------------------------ -----------------

    USER NOT NULL VARCHAR2 (60)

    FECHA_PEDIDO NOT NULL DATE

    REFERENCIA NOT NULL VARCHAR2 (15)

    AMOUNT NUMBER (2)

    SQL > describe referencia

    Name                                          Null?    Type

    ------------------------------------------------------ -----------------

    CODBARRAS NOT NULL VARCHAR2 (15)

    PRODUCT NOT NULL VARCHAR2 (50)

    FORMATO NOT NULL VARCHAR2 (20)

    SILTING NOT NULL VARCHAR2 (15)

    PRECIO NOT NULL NUMBER (7.2)

    STOCK NUMBER (5) NOT NULL

    MIN_STOCK NOT NULL NUMBER (5)

    MAX_STOCK NOT NULL NUMBER (5)

    Please, could someone help me in this matter?

    Thanks in advance.

    Kind regards

    It means that it is already an object named peridos. Question:

    Select object_type from user_objects where object_name = 'PERIDOS;

    to find out what type of object it is. Any chance you try to change the existing definition of peridos view? If so, use

    CREATE or REPLACE view orders (customer, f_pedido, total) as...

    SY.

  • ORA-12899: value too large for column (size: 30, maximum: 25)

    I try to insert values from one table to another using substr (column_x, 1, 25) (field target is of type varchar (25)) and I get an error: ORA-12899: value too large for column (size: 30, maximum: 25) how is this possible?

    SUBSTRB uses the same syntax:

    http://docs.Oracle.com/CD/E11882_01/server.112/e41084/functions181.htm#i87066

    If chopping byte characters does not mean that you could end up with a partial character at the end for example if each character 2 bytes, then the last character would not that it is the first byte, so wouldn't an entire character.

    Depends on what you actually try to reach by taking the partial strings.

    Keep in mind, with the UTF8, you could have up to 4 bytes of length characters each.

Maybe you are looking for

  • Master password

    Mr President. When I open the browser its projection "indicate the master password for the ANITA PRABHAKER."Kindly advice.

  • I can't insert a graphic image into a new publication: win 7, 24 tb

    Sometimes when you compose a new email, I can't insert a picture into a message. I tried the Insert button and the insert icon. This happens all the time; but, when it happens that I can't seem to make it work. My system is a Win 7 with Thunderbird 2

  • Can I combine two partitions on my HARD drive?

    Hi I bought my laptop today and he said it was 80 GB when I put in place at home.There are two hard drives: c drive called vista and 37.1 GB of memory and the other, E with 35 GB drive. Can I combine these two together and if so, how? Thank you

  • List of extinct UltraStamina apps wipes

    Hello, guys!After that lollipop will we have UltraStamina mode. So I have a problem with this mode.In normal mode, I disable some applications (like Google +, social etc.). I don't need them.After that I used Ultra endurance mode, then to return to N

  • new installation reappear

    I already installed the following windows at least 6 times update: a security update for Microsoft Visual C++ 2005 Service Pack 1 Redistributable Package (KB2538242) download size: 2.6 MB. Whenever the message indicates a successful installation. How