Re: [GENERAL] Why is table not found?

2017-01-31 Thread Egon Frerich
Thank you all for your answers. You see: it is a newbie question. Egon Am 31.01.2017 um 14:45 schrieb Egon Frerich: > > I created a db 'Hausrat' with a table "Raum". If I look in pgadmin I > find the the table. In sql field is shown: > > > -- Table: "Raum" > > > -- DROP TABLE "Raum"; > > > CREAT

Re: [GENERAL] Why is table not found?

2017-01-31 Thread Alban Hertroys
> On 31 Jan 2017, at 14:45, Egon Frerich wrote: >> >> CREATE TABLE "Raum" >> ( >> "RaumID" serial NOT NULL, -- Automatisch vergebenes > But psql tells me "Raum" is not existent: > >> egon@xfEinzel ~ $ psql Hausrat >> psql (9.3.15) >> Type "help" for help. >> >> Hausrat=# SELECT * FROM Raum;

Re: [GENERAL] Why is table not found?

2017-01-31 Thread John McKown
On Tue, Jan 31, 2017 at 7:45 AM, Egon Frerich wrote: > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I created a db 'Hausrat' with a table "Raum". If I look in pgadmin I > find the the table. In sql field is shown: > > > -- Table: "Raum" > > > > -- DROP TABLE "Raum"; > > > > CREATE TABLE

Re: [GENERAL] Why is table not found?

2017-01-31 Thread Rob Sargent
You must quite as "Raum" > On Jan 31, 2017, at 6:45 AM, Egon Frerich wrote: > > > -BEGIN PGP SIGNED MESSAGE- > Hash: SHA1 > > I created a db 'Hausrat' with a table "Raum". If I look in pgadmin I > find the the table. In sql field is shown: > >> -- Table: "Raum" >> >> -- DROP TABLE "R

Re: [GENERAL] Why is table not found?

2017-01-31 Thread Martijn Tonies (Upscene Productions)
Hello Egon, You created the table using delimited identifiers: "Raum" which is not the same as Raum of raum or RAUM When you use delimited identifiers (eg: "MyTable" instead of MyTable), the name becomes case sensitive. When you use SQL, you need to use delimited identifiers: select * from

Re: [GENERAL] Why is table not found?

2017-01-31 Thread Raymond O'Donnell
On 31/01/17 13:45, Egon Frerich wrote: -BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I created a db 'Hausrat' with a table "Raum". If I look in pgadmin I find the the table. In sql field is shown: -- Table: "Raum" -- DROP TABLE "Raum"; CREATE TABLE "Raum" ( "RaumID" serial NOT NULL, -- Au

[GENERAL] Why is table not found?

2017-01-31 Thread Egon Frerich
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 I created a db 'Hausrat' with a table "Raum". If I look in pgadmin I find the the table. In sql field is shown: > -- Table: "Raum" > > -- DROP TABLE "Raum"; > > CREATE TABLE "Raum" > ( > "RaumID" serial NOT NULL, -- Automatisch vergebenes Identifiz