From: | Scott Marlowe <smarlowe(at)g2switchworks(dot)com> |
---|---|
To: | DracKewl <bradbudge(at)hotmail(dot)com> |
Cc: | pgsql-general(at)postgresql(dot)org |
Subject: | Re: Select Stament Issue?? |
Date: | 2005-07-27 15:11:42 |
Message-ID: | 1122477102.15145.97.camel@state.g2switchworks.com |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-general |
On Tue, 2005-07-26 at 13:54, DracKewl wrote:
> Trying out PostgreSQL for the first time and running into a minor
> problem.
> I created two tables one with the Add table wizard the other hard-core
> script.
>
> Script made table:
> Select * from Example
> --This works as expected
> Select * from EXAMPLE
> --This works as expected
>
> Wizard made table:
> Select * from Example
> --ERROR: relation "Example" does not exist
> Select * from "Example"
> --This works as expected
>
> The wizard table has created a case sensitive restriction on me and
> forced me to use quotes. How do I turn this off?
When you created the table you likely did this:
create table Example (...
While the wizard actually did this:
create table "Example" (...
So, postgresql folded case on your create table, and actually created a
table called example, while the wizard's quoting the table name meant
the table was named Example. This should fix you up:
alter table "Example" rename to example;
From | Date | Subject | |
---|---|---|---|
Next Message | Mark Mikulec | 2005-07-27 15:15:49 | Re: Backup and restore from 7.4.1 to latest, crossing platforms... issues? |
Previous Message | Martijn van Oosterhout | 2005-07-27 15:08:35 | Re: Backup and restore from 7.4.1 to latest, crossing platforms... issues? |