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: Make table read-only

Re: Make table read-only

From: MS <qcom_at_attbi.com>
Date: 19 Oct 2004 13:35:48 -0700
Message-ID: <a2b6d46b.0410191235.47ef882f@posting.google.com>


In addition to the trigger to disable DML, disabling table lock does the trick.

So, for the mentioned example:

SQL> alter table t disable table lock;

This prevents sqlldr direct load, as well as truncate, and DDL's on this table (including drop table).

-Madhu S Received on Tue Oct 19 2004 - 15:35:48 CDT

Original text of this message

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