Re: [GENERAL] ERROR: relation "employees" does not exist

2013-03-11 Thread Alban Hertroys
On 11 March 2013 07:39, Csanyi Pal wrote: > but when I run the command: > CREATE TABLE employee_schedule ( > id serial, > employee_id integer REFERENCES employees(id), > start_time timestamptz, > end_time timestamptz > ); > > I get an error message: > > NOTICE: CREATE TABLE will create i

Re: [GENERAL] ERROR: relation "employees" does not exist

2013-03-10 Thread Andreas Kretschmer
Csanyi Pal wrote: > Hi, > > I just installed Postgresql 9.2 on my Debian Wheezy system. > > I want to study and learn about new data type, the range type. > > I'm following the tutorial: > https://wiki.postgresql.org/images/7/73/Range-types-pgopen-2012.pdf > > but when I run the command: > CR

[GENERAL] ERROR: relation "employees" does not exist

2013-03-10 Thread Csanyi Pal
Hi, I just installed Postgresql 9.2 on my Debian Wheezy system. I want to study and learn about new data type, the range type. I'm following the tutorial: https://wiki.postgresql.org/images/7/73/Range-types-pgopen-2012.pdf but when I run the command: CREATE TABLE employee_schedule ( id serial