Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
Home -> Community -> Usenet -> c.d.o.server -> Re: Make table read-only
This is a trick I read while studying for OCP:
to make a table "read only" set a constraint to "DISABLE VALIDATE". No delete, update or insert will be permitted on that table. If there is no constraint you can create a "dummy" one.
Never tested but it should work.
Regards
Fabrizio
DA Morgan wrote:
> Ralf Zwanziger wrote:
>
>> Is ist possible to make an oracle table read-only? >> (without moving it to a read-only tablespace). >> I haven't found any command like "alter table xxx read only" in the >> docs. >> >> Bye, >> Ralf