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