Thread

  1. Re: [GENERAL] importing into postgres

    Richard Lynch <lynch@lscorp.com> — 1998-07-23T21:22:09Z

    create an import table with no id field, or rather, with a fake field that
    will accept whatever you have in the file.
    
    Then, do an:
    
    insert into realTable from select * from importTable;
    
    and let your auto incrementer do its job.
    
    --
    --
    -- "TANSTAAFL" Rich lynch@lscorp.com