Hello Experts,
I am trying to load unstructured textual data into HANA DB which I am getting from another source(say facebook Posts and Comments).
My Table is like this:
INSERT INTO "SCHEMA"."TABLES" VALUES(
''/*ID <VARCHAR(60)>*/,
''/*CREATED_TIME <VARCHAR(60)>*/,
''/*MESSAGE <NCLOB>*/
);
Here the Message column will be the textual data .
The data is in rich text format and I keep getting SQL error while trying to load the texts as there might be an emoticon or some special character viz:', #,"" etc..
My question is is there a way to load the textual data as is without formatting into the message column?
Regards
Sourav