I am failing in creating tables via the PGadmin III SQL editor – even if the syntax is generated by the frontend:
CREATE TABLE testtable
(
id integer,
"name" character varying(100)
)
WITH (
OIDS = FALSE
)
;
Error message is in german, but basically says that there’s supposed to be a syntax error..
FEHLER: Syntaxfehler bei »integer«
ZEILE 3: id integer,
^
********** Fehler **********
Any ideas ?
Works fine for me.
However I see the error is indicated at line 11. Is it possible the previous statement was not properly terminated and the interpreter chooses this point to give up?