반응형 postgres copy csv1 Postgres copy_export Error"invalid input syntax for type integer" csv bom에러 해결 Error 현상 python 으로 postgres에 연결하여 csv 데이터를 삽입하는 코드를 작성하고 테스트하였는데 copy_sql = f""" COPY actor FROM stdin DELIMITER ',' """ with open(file_name, 'r') as f: cur.copy_expert(copy_sql,f) conn.commit() 아래와 같은 에러가 발생했따. psycopg2.errors.InvalidTextRepresentation: invalid input syntax for type integer: "4" CONTEXT: COPY actor, line 1, column actor_id: "4" 엑셀 양식은 아래와 같다. copy 구문이 이상한가 몇일을 구글링을했는데.. 내 로컬환경은.. 2022. 8. 19. 이전 1 다음 반응형