Hi -
I am bulk loading files into my Hana instance on AWS. I generally works well, however whenever I get errors I cannot get to the ERROR LOG file because HANA writes it under the hdbadm account as a read only file. Because of that, I am unable to download it so I can see the actual error log to determine what's wrong with my data.
Here is a sample of the bulk load command I am using below. The HanaBulkLoadFile.log file is created, but I am unable to download it.
How can I tell Hana to write the log file non-read only so that I can access it??
IMPORT FROM CSV FILE '/home/ec2-user/uploads/HanaBulkLoadFile.txt' INTO "MYHANATABLE"
WITH
RECORD DELIMITED BY '\n'
FIELD DELIMITED BY '|'
DATE FORMAT 'MM/DD/YYYY'
ERROR LOG '/home/ec2-user/uploads/HanaBulkLoadFile.log'
FAIL ON INVALID DATA;