|
I am trying to create a schema for an existing
database with an
existing table named EMPLOYEES. The purpose is for
the "PEN"
branch manager to be able to see his employees only
and not
those from the other branches. I enter the
following through the
DBManager.
CREATE SCHEMA PEN AUTHORIZATION DBA
CREATE VIEW PENEMPLOYEES AS SELECT * FROM
EMPLOYEES WHERE BRANCH='PEN';
and it returns the following error.
Table not found in statement [SELECT * FROM
EMPLOYEES]
What am I doing wrong please? The documentation is
not much
help here.
Bayless |