This is a discussion on Difference between "select_catalog_role" and "select any dictionary" within the Oracle Database forums, part of the Database Server Software category; --> Dear ALL, Does anyone tell me when to use "select_catalog_role" and when to use "select any dictionary". I know ...
| |||||||
| Register | FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
| ||||
| Dear ALL, Does anyone tell me when to use "select_catalog_role" and when to use "select any dictionary". I know that the "select_catalog_role" should logout and login again to take effect and "select any dictionary" does not. Any more major usage difference ? Thanks in advance. Kind Regards, Kelvin |
| |||
| On Tue, 13 Jan 2004 19:10:24 -0800, Kelvin wrote: > Dear ALL, > > Does anyone tell me when to use "select_catalog_role" and when to use > "select any dictionary". I know that the "select_catalog_role" should > logout and login again to take effect and "select any dictionary" > does not. Any more major usage difference ? Select any dictionary is a system privilege and select_catalog_role is a role. That's it. You can use both as you see fit. -- None of us is as dumb as all of us. (http://www.despair.com/meetings.html) |
| ||||
| "Kelvin" <kamingbb@yahoo.com> a écrit dans le message de news:592e04fe.0401131910.2a7d21c8@posting.google.c om... > Dear ALL, > > Does anyone tell me when to use "select_catalog_role" and when to use > "select any dictionary". I know that the "select_catalog_role" should > logout and login again to take effect and "select any dictionary" > does not. Any more major usage difference ? > > Thanks in advance. > > Kind Regards, > Kelvin select_catalog_role allows you to select on the catalog views (dba%, v$%...). select any dictionary allows you to select the dictionary tables that is sys tables. You can't select sys tables with only select_catalog_role role. Regards Michel Cadot |