Skip site navigation (1) Skip section navigation (2)

Peripheral Links

Header And Logo

PostgreSQL
| The world's most advanced open source database.

Site Navigation

Search for
  Advanced Search

pgAdmin Error when trying to run a simple SELECT


  • From: "Brad Smith" <bsmith(at)rdac(dot)com(dot)au>
  • To: <pgadmin-support(at)postgresql(dot)org>
  • Subject: pgAdmin Error when trying to run a simple SELECT
  • Date: Tue, 13 Sep 2005 08:57:19 +0800
  • Message-id: <A51777EE23640141A17640B11E6637FA036927(at)rdaex01(dot)rdac(dot)com(dot)au>

> My problem is this: Whenever I try to run an SQL statement like:

> 

> SELECT * from refUSERS;

> 

> I get an error:

> 

> ERROR: Relation "refusers" does not exist.

PostgreSQL folds unquoted identifiers to lower case. So if your select has the correct spelling you need to use:

 

SELECT * from "refUSERS";

 

 

John DeSoi, Ph.D.

http://pgedit.com/

Power Tools for PostgreSQL

 

John,

 

Thank-you. You solved my problem!

 

Sincerely,

Brad Smith.

 

 



Home | Main Index | Thread Index

Privacy Policy | PostgreSQL Archives hosted by Command Prompt, Inc. | Designed by tinysofa
Copyright © 1996 – 2008 PostgreSQL Global Development Group