Search notes:

ORA-41904: Missing object privilege on … to create a view.

User RENE tries to create view and gets the error message ORA-41904: Missing object privilege on "SYS"."DBA_TAB_COMMENTS" to create a view.:
create view tq84_x as
select *
from
   dba_tab_comments;  
Someone with better privileges helps:
grant select on dba_tab_comments to rene;
Now, the view can be created by RENE.

Granting select on all dictionary views

Alternatively, it's possible to grant select on all data dictionary views by granting the select any dictionary system privilege to a user:
grant select any dictionary to rene;

See also

ORA-00990: missing or invalid privilege
ORA-41900: missing privilege … on …
Other Oracle error messages

Index

Fatal error: Uncaught PDOException: SQLSTATE[HY000]: General error: 8 attempt to write a readonly database in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php:78 Stack trace: #0 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(78): PDOStatement->execute(Array) #1 /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php(30): insert_webrequest_('/notes/developm...', 1759435675, '216.73.216.42', 'Mozilla/5.0 App...', NULL) #2 /home/httpd/vhosts/renenyffenegger.ch/httpsdocs/notes/development/databases/Oracle/errors/ORA-41904_Missing-object-privileges-on_to-create-a-view(59): insert_webrequest() #3 {main} thrown in /home/httpd/vhosts/renenyffenegger.ch/php/web-request-database.php on line 78