I am using PostgreSQL to store business data in large amount for data warehousing purpose. I am writing views to customize the materialized tables.
I am wondering whether it is possible to set a view not updatable.
I have checked the postgresql manual, but found no specific answer.
Many thanks in advance.
PostgreSQL doesn’t have updatable views, you have to create RULE’s to make this possible. Without these extra rules, you can’t do an update on a view.
From the manual: