select on v$ tables

2001-07-23 Thread prasad maganti
hi dba's i need to give select permission to scott user on all v$ tables. is there any role for that. or should i grant the selection using dynamic sql thanx in advance prasad __ Do You Yahoo!? Make international calls for as low as $.04/minute

RE: select on v$ tables

2001-07-23 Thread Anand
Hi, Just grant privilege 'select any table' to scott user OR grant DBA role to scott.\ Regards, Anand. -Original Message- maganti Sent: Monday, July 23, 2001 2:56 PM To: Multiple recipients of list ORACLE-L hi dba's i need to give select permission to scott user on all v$ tables.

Re: select on v$ tables

2001-07-23 Thread Jon Walthour
Prasad: Grant the user the SELECT_CATALOG_ROLE role. That will give the user access to the v$ views, the DBA_ views and several other views and tables. To see a full listing of what they would be granted select on, run: select table_name from dba_tab_privs where grantee='SELECT_CATALOG_ROLE'

RE: select on v$ tables

2001-07-23 Thread Gupta, Brijesh
Title: RE: select on v$ tables Specific Privilege is SELECT ANY DICTIONARY . -Original Message- From: Jon Walthour [mailto:[EMAIL PROTECTED]] Sent: Monday, July 23, 2001 6:25 AM To: Multiple recipients of list ORACLE-L Subject: Re: select on v$ tables Prasad: Grant the user