ERROR: invalid input syntax for integer: SQL state: 22P02

Поиск
Список
Период
Сортировка
От avalon78 geek
Тема ERROR: invalid input syntax for integer: SQL state: 22P02
Дата
Msg-id CALcq1oMENA8Wyhx+5OJ_EQcLsD+_qsWQUYfPCQDnz=zfK2KaNA@mail.gmail.com
обсуждение исходный текст
Ответы Re: ERROR: invalid input syntax for integer: SQL state: 22P02  (Tom Lane <tgl@sss.pgh.pa.us>)
Re: ERROR: invalid input syntax for integer: SQL state: 22P02  (Craig Barnes <cjbarnes18@gmail.com>)
Список pgsql-novice
hi guys,
i am new to pgsql and i am facing a strange problem which i cannot solve.i  want to import data from a txt file to the table cust

the table is
 CREATE TABLE cust
(
   custid integer NOT NULL,
   custOccupation  varchar(30) NOT NULL,
  PRIMARY KEY(custid)
}  

and the txt file contains
13;developer
22;sales manager
  etc

i issue the following sql command
COPY cust
 FROM 'C:\Program Files\PostgreSQL\9.1\customers.txt' 
WITH DELIMITER ';'  ;

and i get an error
ERROR: invalid input syntax for integer: "13"
SQL state: 22P02

i would appreciate if you could help me

best regards and a happy new year!:)

В списке pgsql-novice по дате отправления:

Предыдущее
От: "Jean-Yves F. Barbier"
Дата:
Сообщение: Re: is it normal behavior of index?
Следующее
От: Andreas Kretschmer
Дата:
Сообщение: Re: is it normal behavior of index?