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

Thread: ORA-00933 :SQL command not properly ended

  1. #1
    Join Date
    Dec 2000
    Posts
    46
    I am getting a : ORA-00933 :SQL command not properly ended error
    When I attempt to select from a specified partition of a table. My query is

    Select * from Cust (Part1); -- This will fail with the above error
    I can run Select * from Cust; -- This will run

    And yes this table has 3 partitions and one of them is Part1.

    Any idea what is causing this query to fail?

    Thanks
    G.Ram

  2. #2
    Join Date
    Jun 2000
    Location
    Madrid, Spain
    Posts
    7,447
    have u tried

    Select * from Cust partition (Part1);

  3. #3
    Join Date
    Dec 2000
    Posts
    46
    That did it!. Thank you.

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