Closed Thread
Results 1 to 3 of 3

Thread: Whats wrong with my query!!!

  1. #1
    Saint is offline Learning Programmer
    Join Date
    Aug 2006
    Posts
    63
    Rep Power
    0

    Whats wrong with my query!!!

    Using Oracle 9 and Toad

    Code:
    SELECT * FROM charts.flow WHERE UserID in ('3','4');
    doesn't work..... I get "Table doesn't exist" although I can look at the schema and see Charts DB and flow table. I even copied them instead of typing to make sure no typing flaws.

    Still didn't work. I'm using Toad to do all this by the way.

    Next, I did the "Query Builder" where you actually select the databases and tables from a selection chart which built the exact same query!!!! This same query works fine in the Oracle 8 database. Any ideas?
    Hi >> Saint

  2. CODECALL Circuit advertisement
    Join Date
    Always
    Posts
    Many

     
  3. #2
    Chrisms is offline Newbie
    Join Date
    Aug 2006
    Location
    NJ
    Posts
    28
    Rep Power
    0
    is Charts capitalized? if it is, and you're on a *nix server, you need to be case sensitive.

  4. #3
    Jordan Guest
    Try using quotes around the table name. I've seen Oracle 9 behave this way.

    Code:
    SELECT * FROM "charts.flow" WHERE UserID in ('3','4');

Closed Thread

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Help - Whats wrong with my code?
    By pythonchallenge in forum Python
    Replies: 2
    Last Post: 09-04-2011, 08:23 AM
  2. Replies: 3
    Last Post: 08-07-2011, 10:22 AM
  3. Simple php, whats wrong with this code?
    By pathtotake in forum PHP Development
    Replies: 13
    Last Post: 04-28-2010, 02:59 AM
  4. whats wrong in my source
    By kiddies in forum PHP Development
    Replies: 3
    Last Post: 09-29-2009, 09:23 AM
  5. whats wrong with my code?
    By wygz in forum Visual Basic Programming
    Replies: 5
    Last Post: 02-16-2008, 11:52 AM

Tags for this Thread

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts