I'm trying to use PostgreSQL as backend database for an existing
windows appl.
The Original MS-SQL DB Uses a table named "path"
Is there a way to create a table in PostgreSQL with the same name.
I read http://www.ca.postgresql.org/users-lounge/docs/7.2/postgres/sql-keywords-appendix.html
but even a
CREATE TABLE "path" (collumn_name int NULL);
complaints with
ERROR: TypeCreate: type path already defined
Is there a way to workaround that.
Thanks
Tom