Re: [GENERAL] table does not exist

From: "Ross J(dot) Reedstrom" <reedstrm(at)wallace(dot)ece(dot)rice(dot)edu>
To: Tim Stevens <tstevens(at)genesisnets(dot)com>
Cc: "'pgsql-general(at)postgresql(dot)org'" <pgsql-general(at)postgreSQL(dot)org>
Subject: Re: [GENERAL] table does not exist
Date: 1999-08-06 14:15:17
Message-ID: 19990806091517.A15349@wallace.ece.rice.edu
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On Thu, Aug 05, 1999 at 05:34:17PM -0500, Tim Stevens wrote:
> Hello,
>
> I have installed postgresql version 6.4.2 on a Red Hat Linux 6.0 box. I
> have it up and running.
>
> I have used pgaccess to create some tables, and enter some data into
> them, but when i run a query I get the following message: <tablename>:
> Table does not exist.
>
> my table name is COMPANIES
>
> I am using the following query: SELECT ID, NAME FROM COMPANIES

Tim -
you've had Oracle experience, haven't you? PostgreSQL is also case insensitive,
as per the SQL standard, but defaults to lowercase, rather than uppercase.

try (from a pgsql prompt, preferably):
SELECT id, name FROM companies;

or

SELECT "ID", "NAME" from "COMPANIES";

Ah, I just realized. What version of pgaccess are you running? Constantin
Teodorescu and I fixed up some quoting problems (I've got a bunch of
MixedCase table and field names.) in 0.96. I think a release of 0.97 is due
this week. You could try recreating your tables with lowercase names.

Ross
--
Ross J. Reedstrom, Ph.D., <reedstrm(at)rice(dot)edu>
NSBRI Research Scientist/Programmer
Computer and Information Technology Institute
Rice University, 6100 S. Main St., Houston, TX 77005

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Dmitry Morozovsky 1999-08-06 14:47:30 unique composite index with boolean fields
Previous Message Thomas Good 1999-08-06 12:14:33 Re: [GENERAL] Perl DBD?