Hi Nitish,
Can you please also paste the content of your .hdbtable and .csv here? From the error message, it seems that the content in your csv file does not match the data type of the column which you defined in .hdbtable.
I've successfully tested the timestamp import with the following code.
timestamp.hdbtable:
table.schemaName = "TESTXS";
table.tableType = COLUMNSTORE;
table.columns = [
{name = "TIMESTAMP"; sqlType = TIMESTAMP; nullable = false;}
];
timestamp.csv:
2013-07-30 13:12:46.6610000
timestamp.hdbti:
import =
[
{
hdbtable = "testxs.data::timestamp";
file = "testxs.data.loads:timestamp.csv";
header = false;
}
];
Best regards,
Wenjun