ORA-01450: length maximum key (6398) exceeded in 12 c but not 11g


Using this piece of code in a base of 12 c or 11g with character set AL32UTF8 yields different results:

CREATE TABLE dunc_test (col_198 VARCHAR2 (198 CHAR), col_200 VARCHAR2 (200 CHAR));

-Works
CREATE INDEX ix_dunc_test1 ON dunc_test (NLSSORT (col_198, 'NLS_SORT = BINARY_CI'))

-Fails in 12 c only
CREATE INDEX ix_dunc_test2 ON dunc_test (NLSSORT (col_200, 'NLS_SORT = BINARY_CI'))

Is this a bug in g 11 or 12 c? According to the doco, I suspect 11 g is more lax.

OK, I found the reason. It is the side effect of activate varchar2 (32 k) (max_string_size = extended).

The length of the key to a functional index on NLSSORT (for a ranking non - UCA) is calculated as MIN ( * 8 + 10, ).  If max_string_size = standard (11g behavior), maximum BRUTE size is 2000 bytes and an index on NLSSORT key is never longer than 2000 bytes and does never exceed the limits of index key for 4 k and large blocks. If max_string_size = extended (new 12 c), maximum size of RAW is 32767octets. With VARCHAR2 (200 CHAR) in AL32UTF8, the length of the column in bytes is 4 * 200 = 800. According to the formula of the length of the index key, you get 800 * 8 + 10 = 6410. Beyond 6398 bytes maximum indicated in the error message to your 8 tablespace block size k.

According to the needs, one solution might be to create a tablespace with 32 k block size. The maximum size of key index within this tablespace is 26510 byte (Linux x 64). This gives you the maximum column (26510-10/8) bytes length = 3312 bytes = 828 AL32UTF8 characters.  You cannot index the columns more linguistically if max_string_size = extended.

Note a difference in the behavior of NLSSORT: 11 g or if max_string_size = standard, if an ordering generated key does not fit in a buffer of size with the formula above, it is truncated silently, giving inaccurate results (indeed, the key to ranking is calculated for a prefix of the string). In 12 c with extended = max_string_size, ' ORA-12742: failed to create the key to ranking "is reported instead. We blocked the ability to create a snack imprecise when keys max_string_size = extended in the future to use the rating feature sensitive with specific mechanisms such as primary key constraints.

In summary, this is an architectural limitation, not a bug.

Thank you

Sergiusz

Tags: Database

Similar Questions

  • USB key shows in 'remove hardware safely', but not under the heading of discs

    The first time I used this USB flash drive, I transferred my library iTunes from my old computer to my new laptop and it worked, but now when I plug the flash drive, nothing comes up on my laptop.  The flash drive will appear on the taskbar under 'remove hardware safely', but it is not recognized under the heading "devices with removable storage".  I tried the flash drive on other computers to see if it's just my laptop but nothing appears on the other computers either.  What should I do?

    Hi kkaydance,

    Let us first check if AutoPlay is enabled, follow these steps

    Step 1: AutoPlay  

     

    1. open AutoPlay by clicking the Start button, clicking Control Panel, on material and audio and then click AutoPlay.

    2 choose an action each time you plug in a device or insert a disc.

    AutoPlay

    http://Windows.Microsoft.com/en-us/Windows-Vista/AutoPlay-frequently-asked-questions

    Step 2: Locate the device in Device Manager

    1. open Device Manager by clicking the Start button, click on the Control Panel, clicking system and Maintenance, and then clicking Device Manager.

    If you are prompted for an administrator password or a confirmation, type the password or provide confirmation.

    2. in Device Manager, look for the USB device, and then double-click the device name.

    3. under the gaze of general tab for the status of the device for any error code indicated.


    http://Windows.Microsoft.com/en-us/Windows-Vista/get-help-with-Device-Manager-errors

    If the problem persists,


    Step 3:
    run the fixit provided in the link below.

    http://Windows.Microsoft.com/en-us/Windows-Vista/tips-for-solving-problems-with-USB-devices

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer

    Visit our Microsoft answers feedback Forum and let us know what you think.

  • 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

  • This copy of Windows is not genuine I have Win 7 Home Premium doc & key that came with the pc but no disc, can I come back to win 7 HP?

    Bought an ASUS Eee PC a few months back - a well - was inactive for a few months and now has the following message displays on the screen "this copy of Windows is not genuine" - riddle previous owner installed Win 7 Professional w/o legitimate key? I have Win 7 Home Premium doc & key that came with the pc but not the Windows 7 installation disc. Is there one had to return/restore Win 7 HP without the original disc for Win 7?

    Adding infrom of win diag tool:

    Diagnostic report (1.9.0027.0):
    -----------------------------------------
    Validation of Windows data-->

    Validation code: 50
    Validation caching Code online: n/a, hr = 0xc004f012
    Windows product key: *-* - CM74G - RPHKF-PW487
    Windows product key hash: 71BRYMECVaSXedfumfu8zryHJVY =
    Windows product ID: 00371-177-0000061-85265
    Windows product ID type: 5
    Windows license type: retail
    The Windows OS version: 6.1.7600.2.00010100.0.0.048
    ID: {C258D6DC-FCEC-4D78-A6AE-D0290D63818A} (1)
    Admin: Yes
    TestCab: 0x0
    LegitcheckControl ActiveX: N/a, hr = 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Product name: Windows 7 Professional
    Architecture: 0x00000000
    Build lab: 7600.win7_gdr.120830 - 0334
    TTS error:
    Validation of diagnosis:
    Resolution state: n/a

    Given Vista WgaER-->
    ThreatID (s): n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002

    Windows XP Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    File: No.
    Version: N/a, hr = 0 x 80070002
    WgaTray.exe signed by: n/a, hr = 0 x 80070002
    WgaLogon.dll signed by: n/a, hr = 0 x 80070002

    OGA Notifications data-->
    Cached result: n/a, hr = 0 x 80070002
    Version: N/a, hr = 0 x 80070002
    OGAExec.exe signed by: n/a, hr = 0 x 80070002
    OGAAddin.dll signed by: n/a, hr = 0 x 80070002

    OGA data-->
    Office status: 103 blocked VLK
    Microsoft Office Visio Professional 2003 - 100 authentic
    Microsoft Office Enterprise 2007 - 103 blocked VLK
    OGA Version: N/a, 0 x 80070002
    Signed by: n/a, hr = 0 x 80070002
    Office Diagnostics: B4D0AA8B-604-645_025D1FF3-364-80041010_025D1FF3-229-80041010_025D1FF3-230-1_025D1FF3-517-80040154_025D1FF3-237-80040154_025D1FF3-238-2_025D1FF3-244-80070002_025D1FF3-258-3

    Data browser-->
    Proxy settings: N/A
    User Agent: Mozilla/4.0 (compatible; MSIE 8.0; Win32)
    Default browser: C:\Users\admin\AppData\Local\Google\Chrome\Application\chrome.exe
    Download signed ActiveX controls: fast
    Download unsigned ActiveX controls: disabled
    Run ActiveX controls and plug-ins: allowed
    Initialize and script ActiveX controls not marked as safe: disabled
    Allow the Internet Explorer Webbrowser control scripts: disabled
    Active scripting: allowed
    Recognized ActiveX controls safe for scripting: allowed

    Analysis of file data-->

    Other data-->
    Office details: {C258D6DC-FCEC-4D78-A6AE-D0290D63818A}1.9.0027.06.1.7600.2.00010100.0.0.048x 32*-*-*-*-PW48700371-177-0000061-852655S-1-5-21-3606206582-1294634331-2799272895ASUSTeK Computer Inc. 1005PE American Megatrends Inc.. 0401 20091110000000.000000 + 000B8B83607018400F404090409Eastern Standard Time(GMT-05:00)03_ASUS_portable103100Microsoft Office Visio Professional 2003118DD0A165A1C2500EhKkzIViDaNcyOyUrmH6SKEP5sY =72085-640-9640702-5517614103Microsoft Office Enterprise 200712fFic3JgCreGGRxyF8uMWB4R4Jcg =89388-707-1528066-6591714 ACD7202654E586

    Content Spsys.log: 0 x 80070002

    License data-->
    The software licensing service version: 6.1.7600.16385

    Name: Windows 7 Professional edition
    Description: operating system Windows - Windows (r) 7, retail channel
    Activation ID: e838d943-63ed-4a0b-9fb1-47152908acc9
    ID of the application: 55c92734-d682-4d71-983e-d6ec3f16059f
    Extended PID: 00371-00170-177-000006-00-1033-7600.0000-2572012
    Installation ID: 005144242421870610215885787746464524889844109506716151
    Processor certificate URL: http://go.microsoft.com/fwlink/?LinkID=88338
    Machine certificate URL: http://go.microsoft.com/fwlink/?LinkID=88339
    Use license URL: http://go.microsoft.com/fwlink/?LinkID=88341
    Product key certificate URL: http://go.microsoft.com/fwlink/?LinkID=88340
    Partial product key: PW487
    License status: Notification
    Reason for the notification: 0xC004F009 (grace period expired).
    Remaining Windows rearm count: 3
    Trust time: 06/01/2013-06:27:26

    Windows Activation Technologies-->
    HrOffline: 0x00000000
    HrOnline: 0xC004C532
    Beyond: 0 x 0000000000000000
    Event timestamp: 1:4:2013 22:28
    ActiveX: Registered, Version: 7.1.7600.16395
    The admin service: recorded, Version: 7.1.7600.16395
    Output beyond bitmask:

    --> HWID data
    Current HWID hash: MAAAAAEAAQABAAIAAAABAAAAAwABAAEAJJTQ1TeXyGP8ULjtak5GkPhQ0OYk7nIZ

    Activation 1.0 data OEM-->
    N/A

    Activation 2.0 data OEM-->
    BIOS valid for OA 2.0: Yes
    Windows marker version: 0 x 20001
    OEMID and OEMTableID consistent: Yes
    BIOS information:
    ACPI Table name OEMID value OEMTableID value
    APIC A_M_I_ OEMAPIC
    FACP A_M_I_ OEMFACP
    HPET A_M_I_ OEMHPET
    MCFG A_M_I_ OEMMCFG
    CO-SUBMISSION A_M_I_ OEMECDT
    LASRYVITRAGE A_M_I_ AMI_OEM
    GSCI A_M_I_ GMCHSCI
    SSDT PmRef CpuPm
    SLIC _ASUS_ Notebook

    the key of product in use is touch uses default windows when no key is entered during installation and cannot be enabled. (he has a 30-day grace period that has expired)

    See response from Andrew on how to install home premium.
    Office status: 103 blocked VLK
    Microsoft Office Visio Professional 2003 - 100 authentic

    Microsoft Office Enterprise 2007 - 103 blocked VLK

    your office is not genuine.
  • 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

  • OGG-00241 error on MyKey3, Keyvalue key name exceeds the maximum length.

    Hello
    I test le GG encryption option.
    My the environment is extract (Windows) et Linux Replicat .
    J’ai set up a key encryptación 256 with KEYGEN utility in ENCKEYS file. Then extract le file I defined the option EncryptTrail Aes256 Mykey3 keyName .
    Le extraction process works well .
    But the process of replication ABEND with this error:
    ERROR OGG -00241 Error on MyKey3 name of the key , keyValue exceed le maximum length .

    I copy the file to server replicat ENCKEYS and located in the GG root directory.
    My version is:

    Oracle GoldenGate for Oracle delivery

    OGGCORE_11.2.1.0.1_PLATFORMS_120423.0230_FBO version 11.2.1.0.1

    Any idea on this issue?

    Thank you very much

    Arturo

    Hola,

    This problem has been resolved by converting the file ENCKEYS of back to the Linux format.

    Thank you

    Arturo

  • Caveat! The maximum key length is 900 bytes. Installing vCenter 5

    Hello, I searched the forums but I can't find any other positions that have an answer for this...

    I install a new vCenter 5 on a sweet Windows 2008 R2 sp1, SQL 2008 R2 sp2 box.

    I'm working my way through the file 'DB_and_schema_creation_scripts_MSSQL.txt '.

    "I ran the ' VCDB_mssql. SQL file in Server Manager and got this output.

    Caveat! The maximum key length is 900 bytes. The index 'VPXI_VM_FILE_NAME' has a maximum length of 4000 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_DVPORT_M3' has a maximum length of 1630 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'PK_VPX_EXT_MANAGEDBY_INFO' has a maximum length of 1020 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_HOST_DISABLEADMIN_U1' has a maximum length of 1126 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_VDEVICE_FILE_BACKING_U1' has a maximum length of 904 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_HOSTMULTIPATH_POLICY_M1' has a maximum length of 1028 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'PK_HOSTMULTIPATHINFO_PATH' has a maximum length of 1028 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_HOSTMULTIPATHINFO_PATH_M1' has a maximum length of 1028 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPXI_PSA_PATH' has a maximum length of 1028 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'PK_VPX_DATASTORE_INFO' has a maximum length of 1028 bytes. For a combination of large values, the insert/update operation will fail.

    Caveat! The maximum key length is 900 bytes. The index 'VPX_VM_FLE_FILE_INFO_M3' has a maximum length of 944 bytes. For a combination of large values, the insert/update operation will fail.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. ASSET_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. ASSET_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. LICENSE_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. EDITION_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. Edition_name', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. Product_name', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. ProductVersion ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. Correspondents ", or the object does not exist."

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. ' EXPIRATION_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. COST_UNIT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. CAPACITY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. USE ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. USAGE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. ' USAGE_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. VC_SCOPE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. VC_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. LAST_SAMPLE_COUNT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. SAMPLE_DIGEST', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT. COST_UNIT_NUM', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT_VC_GROUP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT_VC_GROUP. VC_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SNAPSHOT_VC_GROUP. VC_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. Data_type', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. LAST_SAMPLE_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. LAST_SAMPLE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. RETAINED_SAMPLE_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. RETAINED_SAMPLE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. GLOBAL_DIGEST', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA.IS_STATE_VALID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_METADATA. WEEK_KEEP_COUNT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_ASSETS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSETS. ASSET_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSETS. ASSET_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSETS. NAME ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_LICENSES, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. LICENSE_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. LICENSE_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. EDITION_KEY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. Edition_name', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. Product_name', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. ProductVersion ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. COST_UNIT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. CAPACITY', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. Correspondents ", or the object does not exist."

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. ' EXPIRATION_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_LICENSES. COST_UNIT_NUM', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_VC_GROUPS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUPS. VC_GROUP_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUPS. CREATED_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUPS.IS_ACTIVE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. CONTEXT_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. ASSET_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. LICENSE_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. VC_SCOPE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. VC_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_CONTEXT. VC_GROUP_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_VC_GROUP_MEMBERS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUP_MEMBERS. VC_GROUP_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUP_MEMBERS. VC_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_VC_GROUP_MEMBERS. VC_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. SAMPLE_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. CONTEXT_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. ' SAMPLE_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. SAMPLE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. USE ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. LAST_SAMPLE_COUNT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_USAGE. SAMPLE_DIGEST', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_SETTINGS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SETTINGS. NAME ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_SETTINGS. VALUE ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_ASSET_PROPERTIES, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. Property-ID ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. Data_type', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. ASSET_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. VALUE ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. DIGEST ", or the object does not exist."

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. CREATE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. ' CREATE_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES.IS_ACTIVE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. DELETE_TIMESTAMP', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_ASSET_PROPERTIES. ' DELETE_TS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_TPS_ASSETS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_TPS_ASSETS. ASSET_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_TPS_ASSETS. ASSET_NAME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_TPS_ASSETS. DESCRIPTION', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. ' VPX_LIC_AUTO_KEYS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_AUTO_KEYS. ENTITY_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_AUTO_KEYS. ASSET_ID', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_LIC_AUTO_KEYS. LICENSE ", or the object does not exist."

    MSG 102, level 15, State 1, procedure VPXV_DEVICE_COUNTER, line 7

    Incorrect syntax near '$schema '.

    MSG 102, level 15, State 1, line 5

    Incorrect syntax near '$schema '.

    MSG 1088, level 16, State 12, line 5

    Cannot find the object 'VPXV_DEVICE_COUNTER' because it does not exist or you do not have permissions.

    MSG 1088, level 16, State 12, line 5

    Cannot find the object 'VPXV_DEVICE_COUNTER' because it does not exist or you do not have permissions.

    MSG 1088, level 16, State 12, line 5

    Cannot find the object 'VPXV_DEVICE_COUNTER' because it does not exist or you do not have permissions.

    Caveat! The maximum key length is 900 bytes. The index 'pk_property_bulletin' has a maximum length of 1018 bytes. For a combination of large values, the insert/update operation will fail.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. Represented', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. NAME ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. Object_name', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. UNIT ', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. ' KEEP_DAYS, or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. DESCRIPTION', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. SOLUTION', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. SQL_STATEMENT', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. RANGE_TYPE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. RANGE_MIN', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_METADATA. RANGE_MAX', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_VALUE', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_VALUE. Represented', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_VALUE. SAMPLE_TIME', or the object does not exist.

    MSG 15135, level 16, State 4, procedure sp_addextendedproperty, line 37

    Object is not valid. Extended properties are not allowed on ' $schema. VPX_DBM_COUNTER_VALUE. COUNTER_VALUE', or the object does not exist.

    (1 row (s) affected)

    (1 row (s) affected)

    (1 row (s) affected)

    (1 row (s) affected)

    DELETED A TON OF THESE LINES TO SAVE SPACE

    (1 row (s) affected)

    (1 row (s) affected)

    (1 row (s) affected)

    (1 row (s) affected)

    (1 row (s) affected)

    You shouldn't have to do something with these scripts.  If you have an existing SQL DB, you configure ODBC settings and specify that DB SQL in installing vCenter.  The installation program will do what needs to happen.  Just make sure you have dbo on the MSDB (to create rollup jobs) and the VCDB.

    If you use the embedded SQL 2008 R2 express, Setup creates also everything you need 'stuff '.  Simply choose 'create new DB' or something to that effect.

    I hope this helps.

  • ORA-01144: (4194304 blocks) file size exceeds the maximum of 4194303 blocks

    Hi all

    Wen I try to add the new tablespace datafile(32GB) I found the below error. I have space in my drive, why I'm not able to add the new data file to the tablespace?

    ERROR on line 1:
    ORA-01144: (4194304 blocks) file size exceeds the maximum of 4194303 blocks

    Here's my db_block_size information:


    VALUE OF TYPE NAME
    ------------------------------------ ----------- ------------------------------
    Whole DB_BLOCK_SIZE 8192


    How can I add new datafile with on all issues.


    Kind regards
    RHK

    OERR ora 1144
    01144, 00000, "file size (blocks of %s) exceeds the maximum of %s blocks.
    * Cause: Specified file size is greater than the value of the maximum allowed size.

    ORA-01144: (4194304 blocks) file size exceeds the maximum of 4194303 blocks

    just a differece block, so reduce the size of the file you add and issue new cmd, make 30 GB.

  • ORA-01000 maximum open cursosrs exceeded

    When I try to do an export of database sql developer under the Tools menu I get this error ora-01000 maximum open cursosrs exceeded the export process after that, some time, but before that ends the export process. Why is happening a dhow I can fix it?

    Thank you

    -check the open cursor...

    Select the parameter "session_cached_cursors."
    LPAD (value 5) value.
    decode (value, 0, 'n/a', to_char (100 * opportunity to value, '990'): use of '%')
    from (select max (s.value) used
    v $ statname n,.
    v$ sesstat s
    where n.name = 'session cursor cache count ".
    and s.statistic # n.statistic = #.
    ),
    (select value
    the parameter $ v
    where name = 'session_cached_cursors.
    )
    Union of all the
    Select 'open_cursors', lpad (value 5).
    TO_CHAR (100 * opportunity to value, '990') | '%'
    from (select max (sum (s.value)) used
    v $ statname n,.
    v$ sesstat s
    where n.name in ('opened cursors current',
    'number of the session cursor cache')
    and s.statistic # n.statistic = #.
    Group of s.sid
    ),
    (select value
    the parameter $ v
    where name = 'open_cursors');

    or compare each of the session

    SQL > SELECT v.value as numopencursors, s.machine, s.osuser, s.username OF V$ SESSTAT v, V$ SESSION s WHERE v.statistic # = 3 and v.sid = s.sid stopped by 1;

    -check the maximum open cursosrs

    SQL > show parameter open_cursors.

    After this determination by rising open_cursors initialization parameter.

    SQL > alter system set open_cursors = 1000;

    and then try again

    Why is happening a dhow I can fix it?

    over this period, which called the sql statements in session more than before...

    Good luck
    surachart...

  • Activation of Windows7 get error 0xc004c020 "the activation server reported that the Multiple Activation key has exceeded its limit."

    I installed Win7 Pro 64 - bit about 4 - 5 times with the same original key on the same computer, but now I have a problem; When I want to activate key, always error has occurred with this 0xC004C020 with description error Code: the activation server reported that the Multiple Activation key has exceeded its limit. How do I fix this problem?

    Hello

    Please find your resolution from this link: http://technet.microsoft.com/en-us/library/ff793399.aspx

    MAKs by design have a limited number of activations. Contact the Microsoft Activation call center.

    Hope that helps.

    Kind regards

    Joel

  • "The activation server reported that the product key has exceeded its limit of unlocking". Error

    Hello

    I recently changed my motherboard and processor because my old card mother and fried CPU. I had Windows 8 Pro (64-bit) installed earlier, an upgrade to Windows 7 (64-bit). As soon as I started first of all, I got a notification asking me to re - activate my Windows but when I try to activate it with my original key, I get this error: "the activation server reported that the product key has exceeded its limit of unlocking".

    I tried to activate by phone, but instead connect to the automated system, I keep to redirect to voicemail after a few rings. Can someone help me to activate my Windows again? I'm in Karachi, Pakistan.

    The report shows that it is been activated previously, but that the material has changed considerably since the activation - hence the request for reactivation.

    Not too surprising if you traded motherboards. :))

    Telephone activation is definitely the way to go - but it's in the lap of the gods (i.. activation e. operator the MS) as to if they will allow it if the original Win7 installation was an OEM.

    My belief is that they will allow him - of some people hold that they will not :)

  • Lineage tracing an SQL error: ORA-22813: value of the operand exceeds the limits of the system

    Hi all

    I started playing with OEMM and I get the following error when I try to 'Trace Data Impact' in an Oracle table. Here's what I do:

    • I created a template and collected a few schemas/tables:

    Capture.JPG

    Capture1.JPG

    • Now when I try to "Trace Data Impact' on the table AP_DEF_STG, I get the following:

    Capture2.JPG

    Capture3.JPG

    Capture4.JPG

    I already tried to create a "Configuration" for her, I tried to text instead of graphics, but the error is the same. If I go to a view of Oracle and do a "track Data Lineage", I get the same error again.


    That someone was already been in this situation? This is the full error trace:


    ({"error": true, "errorMessage": "SQL error during the tracing of lineage: ORA-22813: value of the operand exceeds the limits of the system"})

    ', 'errorType': 'Line error', 'errorCodes': "[LNGTRC_E0016]".

    ","stackTrace":"Error Codes - [LNGTRC_E0016].

    Request - VizModelLineage

    Settings - showInternalObject [false] showNoType [true] showControlLinks [false] startingIds [17 #4723 #0] isBizUI [false] ObjectID [17 #1 #0] showSummaryView [true] collapseLevel [features] resetCache [fake] profile [] showMappingsAsNodes [true] skipCache [false] tracingDirection [3] tracingType [DataLineage] [ReportTree2202015-104855025] originalStartingObject cacheId [17 #4723 #0] viewType actionType [loadlineage] of viewId [ReportTree2202015-104855025] [ModelLineage]

    MITI.web.common.exceptions.LineageUIException: SQL for tracing line error: ORA-22813: value of the operand exceeds the limits of the system

    at MITI.web.common.service.facades.LineageFacadeImpl.getLineageGraph (LineageFacadeImpl.java:284)

    at MITI.flash.tabs.VizModelLineage.getLineageTree (VizModelLineage.java:429)

    at MITI.flash.tabs.VizModelLineage.buildLineageGraph (VizModelLineage.java:356)

    at MITI.flash.tabs.VizModelLineage.performAction (VizModelLineage.java:148)

    at MITI.server.servlets.FlashServlet.doPost (FlashServlet.java:156)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:421)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1070)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:611)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:316)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.runTask (ThreadPoolExecutor.java:895)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:918)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:662)

    Caused by: MITI.server.services.lineage.LineageException: (LNGTRC_E0016) SQL error during the tracing of lineage: ORA-22813: value of the operand exceeds the limits of the system

    at MITI.server.services.lineage.database.LineageDataSource.handle (LineageDataSource.java:41)

    at MITI.util.database.CommonDataSource.handleSQLException (CommonDataSource.java:124)

    at MITI.util.database.CommonDataSource.executeTransaction (CommonDataSource.java:83)

    at MITI.util.database.CommonDataSource.executeStatement (CommonDataSource.java:54)

    at MITI.server.services.lineage.impl.LineageImpl.traceLineage (LineageImpl.java:554)

    at MITI.server.services.lineage.common.LineageTracer.traceLineage (LineageTracer.java:1078)

    at MITI.server.services.lineage.common.LineageTracer.traceDataLineage (LineageTracer.java:313)

    at MITI.server.services.lineage.common.LineageTracer.traceTechnicalData (LineageTracer.java:176)

    at MITI.web.common.service.facades.LineageFacadeImpl.getLineageGraph (LineageFacadeImpl.java:245)

    ... 21 more

    Caused by: java.sql.SQLException: ORA-22813: value of the operand exceeds the limits of the system

    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)

    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)

    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)

    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)

    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)

    at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)

    at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)

    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1188)

    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)

    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)

    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)

    at MITI.util.database.Query.executeStatement (Query.java:45)

    at MITI.util.database.Statement.execute (Statement.java:66)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:50)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:47)

    at MITI.util.database.Transaction.execute (Transaction.java:92)

    at MITI.util.database.CommonDataSource.executeTransaction (CommonDataSource.java:80)

    ... more than 27

    Caused by:

    MITI.server.services.lineage.LineageException: (LNGTRC_E0016) SQL error during the tracing of lineage: ORA-22813: value of the operand exceeds the limits of the system

    at MITI.server.services.lineage.database.LineageDataSource.handle (LineageDataSource.java:41)

    at MITI.util.database.CommonDataSource.handleSQLException (CommonDataSource.java:124)

    at MITI.util.database.CommonDataSource.executeTransaction (CommonDataSource.java:83)

    at MITI.util.database.CommonDataSource.executeStatement (CommonDataSource.java:54)

    at MITI.server.services.lineage.impl.LineageImpl.traceLineage (LineageImpl.java:554)

    at MITI.server.services.lineage.common.LineageTracer.traceLineage (LineageTracer.java:1078)

    at MITI.server.services.lineage.common.LineageTracer.traceDataLineage (LineageTracer.java:313)

    at MITI.server.services.lineage.common.LineageTracer.traceTechnicalData (LineageTracer.java:176)

    at MITI.web.common.service.facades.LineageFacadeImpl.getLineageGraph (LineageFacadeImpl.java:245)

    at MITI.flash.tabs.VizModelLineage.getLineageTree (VizModelLineage.java:429)

    at MITI.flash.tabs.VizModelLineage.buildLineageGraph (VizModelLineage.java:356)

    at MITI.flash.tabs.VizModelLineage.performAction (VizModelLineage.java:148)

    at MITI.server.servlets.FlashServlet.doPost (FlashServlet.java:156)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)

    at org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:103)

    at org.apache.catalina.core.StandardEngineValve.invoke(StandardEngineValve.java:116)

    at org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:421)

    at org.apache.coyote.http11.AbstractHttp11Processor.process(AbstractHttp11Processor.java:1070)

    to org.apache.coyote.AbstractProtocol$ AbstractConnectionHandler.process (AbstractProtocol.java:611)

    to org.apache.tomcat.util.net.JIoEndpoint$ SocketProcessor.run (JIoEndpoint.java:316)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.runTask (ThreadPoolExecutor.java:895)

    to java.util.concurrent.ThreadPoolExecutor$ Worker.run (ThreadPoolExecutor.java:918)

    to org.apache.tomcat.util.threads.TaskThread$ WrappingRunnable.run (TaskThread.java:61)

    at java.lang.Thread.run(Thread.java:662)

    Caused by: java.sql.SQLException: ORA-22813: value of the operand exceeds the limits of the system

    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)

    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)

    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)

    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)

    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)

    at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)

    at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)

    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1188)

    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)

    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)

    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)

    at MITI.util.database.Query.executeStatement (Query.java:45)

    at MITI.util.database.Statement.execute (Statement.java:66)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:50)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:47)

    at MITI.util.database.Transaction.execute (Transaction.java:92)

    at MITI.util.database.CommonDataSource.executeTransaction (CommonDataSource.java:80)

    ... more than 27

    Caused by:

    java.sql.SQLException: ORA-22813: value of the operand exceeds the limits of the system

    at oracle.jdbc.driver.SQLStateMapping.newSQLException(SQLStateMapping.java:70)

    at oracle.jdbc.driver.DatabaseError.newSQLException(DatabaseError.java:133)

    at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:206)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:455)

    at oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:413)

    at oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:1035)

    at oracle.jdbc.driver.T4CPreparedStatement.doOall8(T4CPreparedStatement.java:194)

    at oracle.jdbc.driver.T4CPreparedStatement.executeForDescribe(T4CPreparedStatement.java:791)

    at oracle.jdbc.driver.T4CPreparedStatement.executeMaybeDescribe(T4CPreparedStatement.java:866)

    at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1188)

    at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3386)

    at oracle.jdbc.driver.OraclePreparedStatement.execute(OraclePreparedStatement.java:3487)

    at oracle.jdbc.driver.OraclePreparedStatementWrapper.execute(OraclePreparedStatementWrapper.java:1374)

    at MITI.util.database.Query.executeStatement (Query.java:45)

    at MITI.util.database.Statement.execute (Statement.java:66)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:50)

    to MITI.util.database.CommonDataSource$ 1.run(CommonDataSource.java:47)

    at MITI.util.database.Transaction.execute (Transaction.java:92)

    at MITI.util.database.CommonDataSource.executeTransaction (CommonDataSource.java:80)

    at MITI.util.database.CommonDataSource.executeStatement (CommonDataSource.java:54)

    at MITI.server.services.lineage.impl.LineageImpl.traceLineage (LineageImpl.java:554)

    at MITI.server.services.lineage.common.LineageTracer.traceLineage (LineageTracer.java:1078)

    at MITI.server.services.lineage.common.LineageTracer.traceDataLineage (LineageTracer.java:313)

    at MITI.server.services.lineage.common.LineageTracer.traceTechnicalData (LineageTracer.java:176)

    at MITI.web.common.service.facades.LineageFacadeImpl.getLineageGraph (LineageFacadeImpl.java:245)

    at MITI.flash.tabs.VizModelLineage.getLineageTree (VizModelLineage.java:429)

    at MITI.flash.tabs.VizModelLineage.buildLineageGraph (VizModelLineage.java:356)

    at MITI.flash.tabs.VizModelLineage.performAction (VizModelLineage.java:148)

    at MITI.server.servlets.FlashServlet.doPost (FlashServlet.java:156)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:646)

    at javax.servlet.http.HttpServlet.service(HttpServlet.java:727)

    at org.apache.catalina.core.ApplicationFilterChain.internalDoFilter(ApplicationFilterChain.java:303)

    at org.apache.catalina.core.ApplicationFilterChain.doFilter(ApplicationFilterChain.java:208)

    at org.apache.catalina.core.StandardWrapperValve.invoke(StandardWrapperValve.java:220)

    at org.apache.catalina.core.StandardContextValve.invoke(StandardContextValve.java:122)

    at org.apache.catalina.core.StandardHostValve.invoke(StandardHostValve.java:170)

    Oracle has published OEMM 12.2.1 and this error is gone! So if you are facing this problem in an older version, just go to the newest one.

  • "ORA-28374: typical skeleton key not found in the portfolio ' with FUSION

    Hello

    I create two tables (table1, table2) both are encrypted with the transparent data encryption in the column 'name '.

    When I think to use the merger to load the data, an error message occurs ORA-28374: typical skeleton key not found in portfolio!

    Fusion in table1 a

    using table2 b

    on (a.code1 = b.code1)

    When not 7.fit then

    Insert...

    values...

    But when I insert the user, no problem

    I need to use the merger see data befor insert. Someone know why with the merger of this error occurred? and who can I fix?

    My version of oracle is 11.2.0.1.0 - 64 bit

    Thanks in advance

    I have the problem, it's very strange!

    I use TDE in the name column when I create table1, but I change table2 to encrypt the column.

    I have the error ORA-28374 when I use the merger.

    I dropped table2 and I recreated with TDE in colum.

    So no problem when I use the FUSION!

  • ORA-02449: unique/primary keys in table referenced by foreign keys

    SQL > create table empinformation
    () 2
    primary key pk_empinformation number (6) 3 forced mobileno
    4 address varchar (100),
    5 salary number (10),
    6 personalid varchar (10) constraints fk_employees_section references employee (emp_id));

    Table created.


    SQL > drop table empinformation;

    ORA-02449: unique/primary keys in table referenced by foreign keys

    solution

    This error happens when the foreign key of a table is referenced by the primary key of the other table.

    If you want to remove the table had refernce key then, you must
    need to remove this table with the foreign key is referenced.

    or

    SQL > drop table EMPLOYEE CASCADE CONSTRAINTS;
    Deleted table.

    This will remove the table parent without droping the child table.

    Published by: Ritesh Singh October 3, 2011 14:04

  • Recently, the delete key and rt click on remove does not remove a message. Must restart you Bird to be able to delete a message. With the help of v 24.5.0

    Using Thunderbird 24.5.0, W7, patches up-to-date

    The DELETE key or right-click delete suddenly does not remove a messsage.

    Restart Thunderbird and then they both work.

    What should I look for?

    File is not very large and simply restart brought the function.

    But, as a note aside, I don't have the problem in the last two days.

    Don't know what has changed. However.

Maybe you are looking for

  • YouTube makes Firefox crashes

    When I run a youtube video after a while, firefox crashes.Sometimes, it's when I change position video on youtube.Sometimes, it's after I close the youtube tab.This happens even in safe mode.

  • I'm looking for STE in operating system.

    Hello How can I get the ETS? can I have a free version or a trial? Kind regards!

  • Definition of privileges by using the API

    Hello I am a newbie of TestStand. Please bear with me if this question seems very basic. I am trying to build a c# wrapper around the user management module in TestStand. I created a new user interface that reads all the characteristics of a user as

  • Fax Confirmation question

    We have an Officejet Pro 8600 Premium who send pictures ith Fax Confirmations on is turned on. And seems to work when physically fax of the charger of the printer very well. But when sending faxes via the network by software HP print no confirmation.

  • Windows XP files disappeared

    My friend has a Windows XP computer and comes to discover that all of its files have disappeared (except for the files saved from these days). All her files are still there, but the files inside are all gone (and there are very important documents fo