i have created a table which is as belows .
The structure of the table is as follows :
Create Table advanced
(Id varchar(15),
Name varchar(20),
Dept varchar(15),
Cgpa float,
Birth_date date,
Mob_no int,
Dist varchar(20),
Salary number(8));
When I want to create view as follows the sql plus gives me error 'insufficient privileges ' .
Create View advanced_data as
(
select name,dept,dist,salary from advanced
);
How can I solve this issue ?