If you create a table "Employee" then
select * from employee
You'll get ora-942 table or view does not exist
select * from "Employee" is the only way to address that table
Drop the double quotes.
If the software user is naming db objects, don't use double quotes!




Reply With Quote