Make Table Read Only Oracle By Shadab Mohammad • Jan 22, 2013 • No comments — Make Table Read Only [sourcecode language="sql"] alter table <table_name> read only; [/sourcecode] -- Make Table Back to Read Write. [sourcecode language="sql"] alter table <table_name> read write; [/sourcecode] Share this:Click to share on Twitter (Opens in new window)Click to share on LinkedIn (Opens in new window)Click to share on Facebook (Opens in new window)Click to share on Tumblr (Opens in new window)Click to share on WhatsApp (Opens in new window) Category: Database • SQL Tags: only • oracle • Read • table • Write