I am loading ORC files present in an Amazon S3 bucket to an Amazon Redshift database using the COPY
command.
The copy command runs successfully but the Redshift table isn't updated. I am not able to catch any errors.
Copy command:
copy public."testairflow"
from 's3://demofile/demo1.orc'
iam_role 'arn:aws:iam::****'
format as ORC;
Kindly tell where is the error?