Kindra Martinenko <kindramart(at)yahoo(dot)com> writes:
> I created a table that mimics the csv table I want to read from. I set privleges to "All" and have been attempting to execute the following procedure:
> COPY BaxterCommercial WITH OIDS FROM 'H:\...\BaxterCommercial.csv'
> USING DELIMITERS ',';
You need to double the backslashes, or perhaps replace them with forward
slashes. Read about string literal syntax here:
http://www.postgresql.org/docs/8.3/static/sql-syntax-lexical.html#SQL-SYNTAX-CONSTANTS
regards, tom lane