DBAsupport.com Forums - Powered by vBulletin
Results 1 to 9 of 9

Thread: desc of a existing table not possible

  1. #1
    Join Date
    Jan 2002
    Posts
    94

    Cool

    dear fiends,

    why is Oracle so cryticaly?!

    On Oracle 8.0.5.0.0 I execute a SELECT statement to view the content of the table. But when I try to DESC the identical table it does not work. - Is´nt it cypticaly?

    chris

  2. #2
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    What do you mean "It doesn't work". Do you get an error message?
    Jeff Hunter

  3. #3
    Join Date
    Jan 2002
    Posts
    94
    yes, the error message is: "table or view does not exist" :<

    chris

  4. #4
    Join Date
    Oct 2000
    Location
    Saskatoon, SK, Canada
    Posts
    3,925
    Describe is there in 8.0.5. Can you tell more on what you did and how you did?

    Sam
    Thanx
    Sam



    Life is a journey, not a destination!


  5. #5
    Join Date
    Jan 2002
    Posts
    94
    SQL*PLUS:
    - I connectet as a user who got dba rights
    - than I selected one table (the table is owned from this user)
    - and now I try to descibe the table I selected before

    that´s it!

    chris

  6. #6
    Join Date
    Jan 2002
    Posts
    148
    try to do
    sql> desc "table_name"

    within DOUBLE QUOTES.

    Jr.

  7. #7
    Yes, so???!!!
    I think I can't understand what hapens there... What is your problem, again?
    ovidius over!

  8. #8
    Join Date
    Jan 2002
    Posts
    94
    Hmm...

    SQL>ORA-00942 table or view does not exist

    chris

  9. #9
    Join Date
    Nov 2000
    Location
    greenwich.ct.us
    Posts
    9,092
    Lets see the output from :

    Code:
    SELECT owner, object_name, object_type
    FROM dba_objects
    WHERE upper(object_name) = upper('your_object_name')
    Jeff Hunter

Posting Permissions

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


Click Here to Expand Forum to Full Width