SAP/ABAP

Hana Error: cannot use duplicate index name

Denise 2022. 8. 3. 09:18

sometimes adjusting table thru SE14 error occurs because table data is not valid in field type.

it has no short dump in ST22 but table is not activating with the message

'SQL exception SQL code 289 SQL message cannot use duplicate index name'.

in this case try to find out existing index on temp table generated while adjusting.

 

in tcode ST04, execute query below.

SELECT * from sys.indexes where table_name like '%CBO_TABLE%'

 

if you found the index execute DDL below

ALTER TABLE cbo_table DROP INDEX index_name

 

 

'SAP > ABAP' 카테고리의 다른 글

Routing maintenance  (0) 2022.11.17
Proxy Error : Message.General  (0) 2022.08.03
ENQUEUE_READ  (0) 2022.06.24
SQL Editor for Hana ( Native )  (0) 2022.06.09
마스터 데이터 BAPI  (0) 2022.05.25