Thread: Wierd postgres Problem

Wierd postgres Problem

From
Najm Hashmi
Date:
Hi All,I am trying to define a new set of  tables an I am getting this strange
syntex problem on date, or timestamp data types. I am also getting error on
not null constranit as well... Postgres is behaving strangely....  first
definations with  not null

cmdb=# create table media_received (
cmdb(# comp_id not null,
cmdb(# dept_id not null,
cmdb(# date_rec timestamp default 'now',
cmdb(# units  int4  default 0,
cmdb(# media_type varchar(64),
cmdb(# enqued int4 check (enqued=<units),
cmdb(# encoded int4 check(encoded=<enqued),
cmdb(# insys int4 check(insys=<encoded),
cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
cmdb(# constraint media_comp_fk foreign key(comp_id) references company
cmdb(# );
ERROR:  parser: parse error at or near "not"

Second definition without not null and data type timestamp,
cmdb=# create table media_received (
cmdb(# comp_id,
cmdb(# dept_id,
cmdb(# date_rec timestamp,
cmdb(# units  int4  default 0,
cmdb(# media_type varchar(64),
cmdb(# enqued int4 check (enqued=<units),
cmdb(# encoded int4 check(encoded=<enqued),
cmdb(# insys int4 check(insys=<encoded),
cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
cmdb(# constraint media_comp_fk foreign key(comp_id) references company
cmdb(# );
ERROR:  parser: parse error at or near "timestamp"
3rd def with date as data type:
cmdb=# create table media_received (
cmdb(# comp_id,
cmdb(# dept_id,
cmdb(# date_rec date,
cmdb(# units  int4  default 0,
cmdb(# media_type varchar(64),
cmdb(# enqued int4 check (enqued=<units),
cmdb(# encoded int4 check(encoded=<enqued),
cmdb(# insys int4 check(insys=<encoded),
cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
cmdb(# constraint media_comp_fk foreign key(comp_id) references company
cmdb(# );
ERROR:  parser: parse error at or near "date"

is something wrong with my table definition syntex?
All kind of help is appreciated.
Regards, Najm




Re: Wierd postgres Problem

From
Peter Eisentraut
Date:
Najm Hashmi writes:

> cmdb=# create table media_received (
> cmdb(# comp_id not null,
> cmdb(# dept_id not null,               ^
Those two fields should have a data type.  Same in your other examples.

> cmdb(# date_rec timestamp default 'now',
> cmdb(# units  int4  default 0,
> cmdb(# media_type varchar(64),
> cmdb(# enqued int4 check (enqued=<units),
> cmdb(# encoded int4 check(encoded=<enqued),
> cmdb(# insys int4 check(insys=<encoded),
> cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
> cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
> cmdb(# constraint media_comp_fk foreign key(comp_id) references company
> cmdb(# );
> ERROR:  parser: parse error at or near "not"

-- 
Peter Eisentraut      peter_e@gmx.net       http://yi.org/peter-e/



Re: Wierd postgres Problem

From
Michael Fork
Date:
Your missing your fields types, i.e.:

CREATE TABLE media_received (comp_id        SERIAL        NOT NULL,dept_id        INT4        NOT NULL,date_rec
TIMESTAMP   DEFAULT 'now',
 

that should fix your problem...

Michael Fork - CCNA - MCP - A+
Network Support - Toledo Internet Access - Toledo Ohio

On Tue, 13 Feb 2001, Najm Hashmi wrote:

> Hi All,
>  I am trying to define a new set of  tables an I am getting this strange
> syntex problem on date, or timestamp data types. I am also getting error on
> not null constranit as well... Postgres is behaving strangely....  first
> definations with  not null
> 
> cmdb=# create table media_received (
> cmdb(# comp_id not null,
> cmdb(# dept_id not null,
> cmdb(# date_rec timestamp default 'now',
> cmdb(# units  int4  default 0,
> cmdb(# media_type varchar(64),
> cmdb(# enqued int4 check (enqued=<units),
> cmdb(# encoded int4 check(encoded=<enqued),
> cmdb(# insys int4 check(insys=<encoded),
> cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
> cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
> cmdb(# constraint media_comp_fk foreign key(comp_id) references company
> cmdb(# );
> ERROR:  parser: parse error at or near "not"
> 
> Second definition without not null and data type timestamp,
> cmdb=# create table media_received (
> cmdb(# comp_id,
> cmdb(# dept_id,
> cmdb(# date_rec timestamp,
> cmdb(# units  int4  default 0,
> cmdb(# media_type varchar(64),
> cmdb(# enqued int4 check (enqued=<units),
> cmdb(# encoded int4 check(encoded=<enqued),
> cmdb(# insys int4 check(insys=<encoded),
> cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
> cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
> cmdb(# constraint media_comp_fk foreign key(comp_id) references company
> cmdb(# );
> ERROR:  parser: parse error at or near "timestamp"
> 3rd def with date as data type:
> cmdb=# create table media_received (
> cmdb(# comp_id,
> cmdb(# dept_id,
> cmdb(# date_rec date,
> cmdb(# units  int4  default 0,
> cmdb(# media_type varchar(64),
> cmdb(# enqued int4 check (enqued=<units),
> cmdb(# encoded int4 check(encoded=<enqued),
> cmdb(# insys int4 check(insys=<encoded),
> cmdb(# constraint media_rec_pk primary key(comp_id,dept_id,date_rec),
> cmdb(# constraint media_dept_fk foreign key(dept_id) references department,
> cmdb(# constraint media_comp_fk foreign key(comp_id) references company
> cmdb(# );
> ERROR:  parser: parse error at or near "date"
> 
> is something wrong with my table definition syntex?
> All kind of help is appreciated.
> Regards, Najm
> 
> 



Re: Wierd postgres Problem

From
Tomek Zielonka
Date:
On Tue, Feb 13, 2001 at 10:20:09AM -0500, Najm Hashmi wrote:
> Hi All,
hi
>  I am trying to define a new set of  tables an I am getting this strange
> syntex problem on date, or timestamp data types. I am also getting error on
> not null constranit as well... Postgres is behaving strangely....  first
> definations with  not null
> 
> cmdb=# create table media_received (
> cmdb(# comp_id not null,
> cmdb(# dept_id not null,
[...]
> is something wrong with my table definition syntex?
Yes, you forgot to specify types for comp_id and dept_id fields.

greetings,
Tom

-- 
.signature: Too many levels of symbolic links