मैं copy_expert कमांड का उपयोग कर समाप्त हुआ। ध्यान दें कि विंडोज़ पर, आपको फ़ाइल की अनुमति सेट करनी होगी। यह पोस्ट बहुत उपयोगी है सेटिंग की अनुमति ।
with open(the_file, 'r') as f:
sql_copy_statement = "copy {table} FROM '"'{from_file}'"' DELIMITER '"'{deli}'"' {file_type} HEADER;".format(table = the_table,
from_file = the_file,
deli = the_delimiter,
file_type = the_file_type
)
print sql_copy_statement
cur.copy_expert(sql_copy_statement, f)
conn.commit()