Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.server -> Re: grant on view with blob

Re: grant on view with blob

From: Juhan Kundla <juhan_at_ensib.ee.NICHT.SPAM>
Date: 2000/03/27
Message-ID: <38DF7EB0.49D8DCB9@ensib.ee.NICHT.SPAM>#1/1

Mike Olivieri wrote:
[cut]
> MY_View:
> CREATE OR REPLACE VIEW MY_View AS
> SELECT ParentID, nvl(VSIZE(MyID),0) + nvl(VSIZE(ParentID),0) +
> nvl(DBMS_LOB.GETLENGTH(my_blob),0) AS Bytes FROM My_Table;



[cut]

Looks like one must have execute on sys.dbms_lob package privilege granted, before (s)he can select data from this view. And you must have execute on sys.dbms_lob with grant option to grant select from your_view to other users.

Juhan Received on Mon Mar 27 2000 - 00:00:00 CST

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US