> Hello All,
>
> How would I go about importing a large M$ Excel sheet into a
> PostgreSQL
> database?
>
After a few dozen combinations I was able to answer my own question.
1. Save the Excel spreadsheet as comma delimited.
2. run 'psql mydatabase'
3. run 'COPY mytable FROM '/myfile.csv' USING DELIMITERS ',';
and it works!