ORA-00604 and ORA-01450 during index creation

Hi all


While trying to create the index on a partitioned table online, I confronted the following errors:

ORA-00604: an error has occurred at the SQL level 1 recursive
ORA-01450: length maximum key (3215) exceeded

I'm on oracle 10G and Linux OS.


Here's the query I use to the index:

CREATE INDEX DBNAME.TABLE_NAME_NAME1_SN_IDX ON DBNAME.TABLE_NAME
(NAME1_SN)

  TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

  INITRANS   2

  MAXTRANS   255

NOLOGGING

LOCAL (  

  PARTITION INDEXNAME_ABC_20080101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080201

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080301

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080401

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080501

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080601

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080701

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080801

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20080901

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20081001

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20081101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20081201

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090201

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090301

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090401

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090501

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090601

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090701

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090801

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20090901

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20091001

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20091101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20091201

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20100101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20100102

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20100103

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_20100104

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201005

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201006

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201007

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201008

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201009

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201010

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201011

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201012

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201101

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201102

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201103

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201104

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201105

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201106

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201107

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201108

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201109

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_201110

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               ),  

  PARTITION INDEXNAME_ABC_MAX

    NOLOGGING

    NOCOMPRESS

    TABLESPACE DBNAME_INDEXNAME_ABC_IDX_TS

    PCTFREE    10

    INITRANS   2

    MAXTRANS   255

    STORAGE    (

                INITIAL          64K

                MINEXTENTS       1

                MAXEXTENTS       UNLIMITED

                BUFFER_POOL      DEFAULT

               )

)

NOPARALLEL online;
Any suggestions...


Thanks and greetings
KK

Hello

as already indicated the error: exceeded key length. So how is the column as defined name1_sn? If she varchar2 (4000) os, then you get this kind of error. Then, one must look for Oracle Text index these fields.

Herald tiomela
http://htendam.WordPress.com

Tags: Database

Similar Questions

  • Cannot track changes to primary and secondary school during the creation of point

    We're on 11.5.10.2 inventory management but not on WMS. We notice that we cannot follow an element with a secondary unit of MEASURE when it was created. The only way to follow is to
    Main unit of MEASURE. Is it because we're not on WMS or are we hitting a bug?

    I know seconday GLU functionality is used for customer installed manufacturing process. If you do not you will not be able to use it.

    Thank you
    Claire

  • ORA-00604 and ORA-00036

    Today on another data base that we get this error:
    ORA-00604: ERROR OCCURRED AT THE SQL LEVEL RECURSIVE 51
    ORA-00036: MAXIMUM NUMBER OF LEVELS OF RECURSIVE SQL (50) EXCEEDED.

    Today has been deployed a new web application...

    Take a look at these notes:
    ORA-600 [17281] [36] and ORA - 36 during trigger execution against unowned object [ID 1017051.102]
    Connect fails with Oracle ORA-00603 Server Session completed [338484.1 ID]

  • ORA-1403, ORA-00604 and ORA-20000

    Kindly help... is we face two errors

    Oracle Database 11 g Enterprise Edition Release 11.2.0.1.0 - 64 bit Production
    PL/SQL Release 11.2.0.1.0 - Production
    CORE 11.2.0.1.0 Production
    AMT for IBM/AIX RISC System/6000: Version 11.2.0.1.0 - Production
    NLSRTL Version 11.2.0.1.0 - Production

    Alerts log error:

    ORA-1403 encountered alert server SMG-4120

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


    After importing the DB, the following error message is displayed by creating materialized views.

    ORA-00604: an error has occurred at the SQL level 1 recursive
    ORA-20000: Trigger xdb_installation_trigger does not support the creation of objects of
    type of snapshot

    PL don't post duplicates - ORA-1403, ORA-00604 and ORA-20000

  • ORA - 29857:Domain index and objects secondary exists in Tablespace

    Database: 10.2.0.4
    OS: Windows

    While dropping the tablespace, I'm getting ORA-29857.
    I understand that I must remove indexes of area on the tablespace, and also to find secondary objects in this tablespace and drop them.


    Please provide me with step by step troubleshooting (query) for this error.



    Thank you
    Alok

    damorgan, one of our As Oracle answered this question even a couple of years. He is Director of Oracle ACE and Oracle self-taught over 12 years at the University level - http://www.morganslibrary.org/)

    ORA-29857: domain indexes and/or secondary objects exist in the tablespace

    As he hinted after the accurate results of the applications after using the name of your tablespace

    SELECT * FROM v$version;
    
    SELECT COUNT(*)
    FROM dba_segments
    WHERE tablespace_name = 'yourTableSpaceNameHere';
    
    DROP TABLESPACE yourTableSpaceNameHere INCLUDING CONTENTS AND DATAFILES;
    

    This query will show you the objects

    SELECT owner, segment_name, partition_name, segment_type, segment_subtype, relative_fno
    FROM dba_segments
    WHERE tablespace_name = ''yourTableSpaceNameHere'';
    

    Those are the objects that you will lose if you drop the tablespace.

  • ORA-01450: key length maximum (1478) exceeded?

    I get the following error when I imported 10.2.0.4.0 database.

    . . importing table "STEP_SHAPE_LEGENDS".
    1820 lines imported
    . . importing table "STEP_SHAPE_PARAMS".
    10 lines imported
    . . importing table "STEP_SUPPORT_DOCS".
    447 lines imported
    IMP-00017: statement failed with error ORACLE 1450:
    'ALTER TABLE 'STEP_SUPPORT_DOCS' ADD PRIMARY KEY ('STEP_ID', 'GROUP_ID', 'I' ".
    "D", "NOM_ARCHIVE") USING INDEX PCTFREE, INITRANS 10 2 MAXTRANS STORAGE (INI"255
    "GROUPS OF TIAL FREELIST 131072 FREELISTS 1 1 USER_TABLES BY DEFAULT)"
    'ENABLE LOGGING '.
    IMP-00003: ORACLE error 1450
    ORA-01450: key length maximum (1478) exceeded.

    How to solve this error?

    What are the definitions of the three columns of the index?

    In general, the length of a key is limited to about 40% of the size of block (if the memory is) less certain overhead costs. I guess you are trying to import in a tablespace with a 4 k block size. The original database was created with a larger block size (8 k, 16 k or 32 k are the options, 8 k is the most common) and was therefore able to accommodate larger keys. Your options would be to shrink one of the columns or to increase the block size or change the definition of the index.

    Justin

  • ORA-01502 Oracle Index unusable

    I am facing this error: ORA-01502 Oracle Index in unusable state

    should I delete the index and re-create or reconstruction will suffice...

    Thanks in advance.

    First of all, to check all the invalid indexes in your database, use the following query:

    Select * from dba_indexes where STATUS <> "VALID."

    Its better try to 'rebuild' the index, try the following command syntax.

    ALTER index rebuild of schema.index_name;

  • ORA-1450 during the installation of the repository

    I tried to use the MISP utility on a 10.2.0.4.4 database on Red Hat Enterprise Linux Server release 5.7 (Tikanga) 2.6.18 274.7.1.el5 (64-bit). I got the below error when you try to create the repository. Anyone else has come across this or have no work around for it? The plan is to update this database to 11.2.0.3 on new hardware. It will go to AL32UTF8 WE8ISO8859P1 in the process.
    Thank you
    Brian


    29.13:56:32:529; P035; S; 10042 encountered an error during the installation of the repository: error occurred during batch processing: ORA-01450: maximum (3118) key length exceeded

    29.13:56:32:531; P035; S; 10008 cannot install the repository.
    29.13:56:33:211; P035; I; 10016 uninstalled repository.

    The MISP repository requires a tablespace with block size of 8 k or higher. Please, try the following for MISP 1.1:

    (1) create a tablespace with block size 8 k
    (2) change the default tablespace for the user of the SYSTEM to use this new space of tables
    (3) install the MISP repository on a new basis
    4) reset the user of the SYSTEM to use the original table space

  • Reference Dell backup and restore - "an error occurred during the creation of the backup of the system"

    I have a Dell XPS-8700 running Windows 7.  I bought the Dell Backup and Recovery Premium Edition.

    I was able to create a backup bootable (hot spare), and I can create a backup of data on my external hard drive.  However, whenever I try to create a backup on my external hard drive system, after about three seconds in the process, he returned: "an error occurred during the creation of the backup of the system.

    How can I create a backup of the system?  Why I get this error?

    Thanks for all the info. My situation sounds very similar to yours.

    I removed using Add/REMOVE programs in the control panel DBR and he removed cleanly.

    V1.7.1.2 downloaded and executed new facility.

    When I ran, it was my premium license key so he had yet to register and was not removed by uninstall.

    As before, Rescue Disk ran and installed the new partition (DBR_BOOT) on WD Passport.

    However, backup system immediately stopped with disconnected, missing target location or full. Tried several times...

    In any case, sounds like you have solved your problem, so you like OP should this brand this post/thread as answered. I will continue to post on my other thread.

  • ORA-29861: area index is shown LOADING/FAILURE/UNUSABLE

    Hello friend


    I'm download the xml file in the users table, so why ORA-29861: area index is shown LOADING/FAILURE/UNUSABLE fire of error.




    Concerning

    Vikas

    link below might help you

    http://ORA-29861.ora-code.com/

    https://www-304.IBM.com/support/docview.wss?uid=swg21427516

    http://www.oracleerrorcodes.com/Oracle-database-error-code-ora-29861-domain-index-is-marked-loadingfailedunusable/

  • ORA-28650: primary Index

    Hello
    When I want to rebuild an index I:
    SQL> alter index SYSMAN.MGMT_METRICS_RAW_PK rebuild online;
    alter index SYSMAN.MGMT_METRICS_RAW_PK rebuild online
    *
    ERROR at line 1:
    ORA-28650: Primary index on an IOT cannot be rebuilt
    then:
     Action: Use Alter table MOVE to reorganize the table(IOT)
    I wonder if just
    ALTER table MGMT_METRICS_RAW move;
    would be sufficient?
    I thank.

    Set that aside, it's a table that you did? If not that why you try to play with it?

    HTH
    Aman...

  • Full backup impossible. An error occurred during the creation of the backup folder.

    Having had a HARD drive failure and have replaced I have now bought a WD 3 to WD My Book for Mac. Plug and put in place to save. However will not achieve, and gives this error message

    Full backup impossible. An error occurred during the creation of the backup folder.

    Does anyone else have this problem?

    Paul

    How the drive is formatted?

  • When you save the playlist, error - "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    When I try to save a playlist, I get an error message "Windows Media Player has encountered a problem during the creation or recording of the reading list.".

    Hello

    • Will there be any changes made prior to this issue?
    • What version of Windows are you using?

    Step 1: I recommend to run the Windows Media Player settings Troubleshooter and check.

    http://Windows.Microsoft.com/en-us/Windows7/open-the-Windows-Media-Player-settings-Troubleshooter

    Step 2: If the problem is to uninstall and reinstall Windows Media Player. Here's how.

    Uninstalling and reinstalling Windows Media Player:

    (A) uninstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find multimedia and uncheck the brand in the face of Windows Media Player.

    d. restart the computer

    (B) reinstall Windows Media Player:

    a. go to start and in the search type 'Turn Windows has or not'.

    b. click on "Turn Windows features on or off".

    c. find the multimedia functions and place a check mark in front of the Windows Media Player.

    d. restart the computer.

    For more information, see the article below:

    http://Windows.Microsoft.com/en-us/Windows7/turn-Windows-features-on-or-off

  • The 'Pro' fonts are losing black and Light versions during the upgrade to El Capitan

    Adobe software - it's great. Unusual to have a problem, but I have a. I often use the pro fonts because they are equipped with a wide range of variants - not just "normal, bold and italic" - but "light, normal, medium weight, fat, black, condensed and italic. During the transfer to El Capitan, all variants of light and black people of all the fonts seem to have been laid. If Adobe asked me, I would have these fonts returned to me :-) Anyone know a solution?

    Software creation Cloud installs variations less than standard fonts such as Minion Pro and Myriad Pro.

    You should look to see what are the versions of these fonts are available as part of your subscription to CC through Typekit. In InDesign CC, CC Illustrator and Photoshop CC, you can click on adding fonts Typekit option in the Type menu to start looking. And look for hundreds of other policies as well.

  • Specify the network during the creation of the VM...

    Hello

    My apologies in advance if this is a question well beaten, but I did some research on Google and not find the answer to this day...

    I'm creating a number of virtual machines based on the opinions of a CSV file and want to specify the network that must be the new virtual machine. This command works...

    $vm = New-VM-Name $_. Name - model $_. Model-host $_. Home - Datastore $_. Data store - OSCustomizationSpec $_. CustomSpec-confirm: $true - RunAsync

    But when I try to specify a network to attach to, with the addition of -NetworkName $_.Network I see the error...

    New-VM: all parameters can be resolved by using the specified named parameters.

    C:\PowerCLI\deploy.ps1:18 char: 9

    + $vm = New-VM-Name $_. Name - NetworkName $.network-model _ $_. Temp...

    + ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~

    + CategoryInfo: InvalidArgument: (:)) [new-VM], ParameterBindingException)

    + FullyQualifiedErrorId: AmbiguousParameterSet, VMware.VimAutomation.ViCore.Cmdlets.Commands.NewVM


    If I create the virtual machine and then run the following command, the network is OK for the virtual machine.

    Get-NetworkAdapter $_. Name | Together-NetworkAdapter NetworkName-$_.Network - StartConnected: $true

    I believe that it is not possible to specify - NetworkName when you also specify a customization specification.


    How could I go on create virtual machine and the specification of its network in this scenario (and within the same VM creation script)? Is it possible to use PowerCLI to make the same changes as those available in hardware virtual machine (experimental) 'customize' user interface that allows the user to select a network during a deployment based on a model?

    Thanks in advance and I hope you can help.

    Matt

    The parameters of Model & OSCustomizationSpec and Networkname belong to different parametersets on the New-VM cmdlet.

    You don't have them together on an invocation of New - VM.

    As you have already discovered, you can make game-NetworkAdapter after the virtual machine has been created.

    New-VM-name $_. Name - model $_. Model-host $_. Home - Datastore $_. Data store.

    -OSCustomizationSpec $_. CustomSpec-confirm: $true |

    Get-NetworkAdapter | Together-NetworkAdapter NetworkName-$_.Network - StartConnected: $true

    But the drawback here is that you cannot use the RunAsync switch on the New - VM cmdlet.

    An alternative is to create virtual machines with switch RunAsync, wait until the virtual machines are created and the customization complete, before changing the portgroup.

    There is a good method described on the PowerCLI blog waiting for the customization of the OS to complete

    And Yes, you can create an OSCustomizationSpecs with PowerCLI, take a look at the New-OSCustomizationSpec cmdlet.

Maybe you are looking for

  • my phone has port and new battery and still will not hold a charge

    my phone has port and new battery and still will not hold a charge

  • What do you intend to do for Mozilla Firefox?

    I am SO sorry this is off-topic, but needs to be asked. I want just a few details if it all new features to add to Firefox in the near future because I have a few ideas for firefox. I feel like Chrome and Opera spread to speed with Mozilla and it sad

  • With an average of meter data

    I have a double precision scalar value to a DAC that represents the current measured in a domestic wind turbine application. This value is harvested in a home made circuit that has a little 'noise problem '.  This noise cause fluctuations in the valu

  • P7-1423w not reading SD card

    My SD card reader has recently stopped working.  When connecting my camera via the USB cable, the computer is able to read the card, but if I put the card in the slot turns on the green light on the front of the PC, but I can't find the map anywhere

  • Eject the CD

    I put a CD of photos in my computer (Qosmio) and it is said Virgin disk but will not be displayed anywhere and I can't understand how something that will not be displayed as an icon on thecomputer eject.  What can I do?