Hi DBAs,
I have granted the user to select all the views (read only access) with following query.
select 'grant select on '|| OWNER || '.' ||view_name || ' to ' || '<USERNAME>;' from dba_views;
Now the problem is the user after connecting to DB via SQL developer is unable to see the definition of the view under the SQL tab option.
Any help so that i can grant the required privilege to the user?