Hi gang
I'm just writing up a database quiz for a local user group and I was hoping I could get a bit of inspiration from the database experts.
One of the questions will be "prior to 11g with the introduction of read-only tables, how could you make a table read-only?". The answers I've come up with:
1) Security priviliges (schema + grant SELECT)
2) Triggers
3) Create a check constraint with disable validate
4) Read-only tablespace
5) Read-only database (standby)
6) (Slightly crazy) Create view, and instead-of triggers that do nothing (similar to 2)
7) Write the query results on a piece of paper and then turn the database off
Anybody have any other answers, real or slightly off topic like mine please?
Cheers,
CM.