Hi Experts
I was following SAP HANA Academy - Text Analysis: 15. TA_PARENT [SPS 09] - YouTube
I have created a table
CREATE COLUMN TABLE "NEO_EZPCFVLMDTZUPGEXJALE01K9H"."COMMENTS1" ( "ID" INTEGER, "Comment" VARCHAR(50), PRIMARY KEY ("ID"));
With Following Tuples
INSERT into "NEO_EZPCFVLMDTZUPGEXJALE01"."COMMENTS1" VALUES (1,'I like pizza');
INSERT into "NEO_EZPCFVLMDTZUPGEXJALE01"."COMMENTS1" VALUES (2,'I love pizza');
INSERT into "NEO_EZPCFVLMDTZUPGEXJALE01"."COMMENTS1" VALUES (3,'I work at VASPP');
And ran the text analysis
CREATE FULLTEXT INDEX my_index_comments2 ON "NEO_EZPCFVLMDTZUPGEXJALE01"."COMMENTS1" ("Comment")
CONFIGURATION 'EXTRACTION_CORE_VOICECOUSTOMER'
TEXT ANALYSIS ON;
And found no results in the "NEO_EZPCFVLMDTZUPGEXJALE01"."$TA_MY_INDEX_COMMENTS2"
All the query was successfully executed
Kindly Assist
