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: immutable LOBs

Re: immutable LOBs

From: DA Morgan <damorgan_at_x.washington.edu>
Date: Thu, 06 Jan 2005 22:27:19 -0800
Message-ID: <41de2a98$1_2@127.0.0.1>


Volker Apelt wrote:

> Oracle 92i
>
> Is there any way to mark LOBs as read-only?
>
> How do you track changes to LOBs and trigger updates
> of meta data like MD5 sum?
>
> AFAIK, Triggers catch access to rows, but not DBMS_LOB.OPEN
> or .WRITE.
>
> Thanks,
>
> Volker

CREATE TABLESPACE ro_data ...

CREATE TABLE lobtab (
recid NUMBER(5),
lobcol BLOB)
LOB (lobcol) STORE AS (TABLESPACE ro_data) TABLESPACE other_tbsp;

ALTER TABLESPACE ro_data READ ONLY;

-- 
Daniel A. Morgan
University of Washington
damorgan_at_x.washington.edu
(replace 'x' with 'u' to respond)


----== Posted via Newsfeeds.Com - Unlimited-Uncensored-Secure Usenet News==----
http://www.newsfeeds.com The #1 Newsgroup Service in the World! >100,000 Newsgroups
---= East/West-Coast Server Farms - Total Privacy via Encryption =---
Received on Fri Jan 07 2005 - 00:27:19 CST

Original text of this message

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