|
|
Re: granted the create view priv exclusively [message #7864 is a reply to message #7858] |
Mon, 14 July 2003 02:12 |
Abu Arbab
Messages: 13 Registered: June 2003
|
Junior Member |
|
|
I can create view but the problem is that
when i run the following procedure it is giving an error insufficient privileges
CREATE OR REPLACE procedure qap_run_MT_View
as
BEGIN
EXECUTE IMMEDIATE 'drop materialized view QAP_MS_VIEW';
EXECUTE IMMEDIATE 'create materialized view QAP_MS_VIEW as select * from QAP_document ';
EXECUTE IMMEDIATE' grant select on QAP_MS_VIEW to qry_lims';
END;
/
|
|
|
|
|