sqlplus / as sysdba
Create table t1(number f1);
Create the view v 1 as select * from t1;
Create a user cc identified by wcycc;
Authorized to connect to cc;
Authorize select on v 1 to cc;
Connecting cc/wcycc
select * from sys . v 1;