Redshift COPY command delimiter not found

后端 未结 7 1661
有刺的猬
有刺的猬 2021-02-02 07:09

I\'m trying to load some text files to Redshift. They are tab delimited, except for after the final row value. That\'s causing a delimiter not found error. I only see a way to s

7条回答
  •  攒了一身酷
    2021-02-02 07:46

    I don't think the problem is with missing at the end of lines. Are you sure that ALL lines have correct number of fields?

    Run the query:

    select le.starttime, d.query, d.line_number, d.colname, d.value,
    le.raw_line, le.err_reason    
    from stl_loaderror_detail d, stl_load_errors le
    where d.query = le.query
    order by le.starttime desc
    limit 100
    

    to get the full error report. It will show the filename with errors, incorrect line number, and error details.

    This will help to find where the problem lies.

提交回复
热议问题