Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8932857
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T09:24:11+00:00 2026-06-15T09:24:11+00:00

Notable information I am using Postgresql 9.2 on Windows 7 64-bit. It was installed

  • 0

Notable information

  • I am using Postgresql 9.2 on Windows 7 64-bit. It was installed using the installer provided by Postgresql website
  • I am logged into the postgres database as postgres
  • I create the BryceTest Schema under the postgres user
  • I configure search_path to show "brycetest, public"

This SQL when generated by the query builder provided by pgAdmin-III works as expected

SELECT "DummyDataMasterTable"."Dummy_PK", 
       "DummyDataMasterTable"."DummyName"
FROM "BryceTest"."DummyDataMasterTable";

BUT this doesn’t

SELECT DummyDataMasterTable.Dummy_PK, 
       DummyDataMasterTable.DummyName
FROM BryceTest.DummyDataMasterTable;
-------------------------------------------

ERROR:  relation "dummydatamastertable" does not exist
LINE 4:     FROM DummyDataMasterTable;
                 ^

********** Error **********

ERROR: relation "dummydatamastertable" does not exist
SQL state: 42P01
Character: 101

     FROM BryceTest.DummyDataMasterTable;

Neither does

SELECT 
    Dummy_PK, 
    DummyName
FROM DummyDataMasterTable;

-------------------------------
ERROR:  relation "dummydatamastertable" does not exist
LINE 4:     FROM DummyDataMasterTable;                     ^

********** Error **********

ERROR: relation "dummydatamastertable" does not exist
SQL state: 42P01
Character: 59

I would THINK that by configuring my schema search_path to look in my newly created schema FIRST it wouldn’t need to have the fully qualified schemaName.tableName

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-15T09:24:12+00:00Added an answer on June 15, 2026 at 9:24 am

    You created the tables using double quotes and therefor they are now case-sensitive (as required by the ANSI SQL standard).

    "FooBar" is a different name than "Foobar", however FooBar and foobar are the same name (because they are not quoted).

    Because you did so, you must quote the table and column names always.

    The following works because the identifiers are not quoted:

    create table FooBar 
    (
      Some_COLUMN integer
    );
    
    select some_column from foobar;
    select SOME_COLUMN FROM FOOBAR;
    select Some_ColumN from FooBAR;
    

    I would recommend you re-create the tables without any quotes, then you can write table and column names any way you want (as long as you don’t use double quotes).

    More details about (quoted) identifiers are in the manual: http://www.postgresql.org/docs/current/static/sql-syntax-lexical.html#SQL-SYNTAX-IDENTIFIERS

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm Trying to extract information from XML using XPath and put it into a
Not able to store all binary data values into sqlite3 table using QT. For
I am using character varying data type in PostgreSQL. I was not able to
I am using CreateProcessAsUser from a windows service ( please can we stay on-topic
We develop some product using an internal design tool that stores information in XML
I am using cakephp. I am trying to use httpsocket to get information. <?php
I want to read XML data using XPath in Java, so for the information
I'm using Qt to create TCP server using QTcpServer. Every time a client connects
I've run into some problems debugging a multi-threaded process using GDB. I have a
I am currently using Schemacrawler to gather information about various databases. The issue I

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.