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

Thread: Invalid Table Name with a View

  1. #1
    Join Date
    Jun 2003
    Posts
    1

    Invalid Table Name with a View

    Ladies and gentlemen, I need your assistance please.

    I have a rather complex SQL statement (multiple inline views) that I'm encapsulating inside a view. All tables are owned by the same schema.

    When connected as the schema owner, the SQL executes flawlessly. After successfully creating the view (owned by the same schema), and query the view, I receive an ORA-00903: INVALID TABLE NAME error.

    Any ideas why I might be receiving that error? Could it be the inline views in my SQL? By inline view, I mean like this:

    select 1
    from ( -- Inline view
    select 1
    from dual
    )


    I appreciate any help.

    Thanks,
    David

  2. #2
    Join Date
    May 2000
    Location
    ATLANTA, GA, USA
    Posts
    3,135
    Checkup alias given to in-line views.
    They may be misspelled.

    Tamil

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