0

The following SQL statement creates an error:

Create FullText Index "X_D_FTI"
On "XING_DESC"("DESCRIPTION")
TEXT ANALYSIS ON
CONFIGURATION 'EXTRACTION_CORE'; 

This is the error output

Could not execute 'Create FullText Index "X_D_FTI" On "XING_DESC"("DESCRIPTION") TEXT ANALYSIS ON CONFIGURATION ...' in 5 ms 700 µs .

SAP DBTech JDBC: [261]: invalid index name: column already indexed

Database is SAP HANA

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113

1 Answers1

2

The problem was that SAP HANA creates automatically an index for columns with data-type TEXT.

The solution was to use data type BLOB on column DESCRIPTION.

Thorsten Niehues
  • 13,712
  • 22
  • 78
  • 113