vote up 1 vote down star

Hi,

How would one get columns information on table which he doesn't own, but has select granted? This is, without using DESCRIBE table_name. Consider this example:


// user bob owns table STUDENTS
grant select on students to josh;
// now josh logs in, normally he would do
describe bob.students;
// but he's looking for something along the lines
select column_name from user_tab_columns where table_name = 'STUDENTS';
// which doesn't work, as josh doesn't own any tables on his own

Any ideas? Is this even doable?

flag

75% accept rate

2 Answers

vote up 3 vote down check
select column_name from all_tab_columns where table_name = 'STUDENTS';

edit: or better

select owner, column_name from all_tab_columns where table_name = 'STUDENTS';

link|flag
vote up 2 vote down

Have a look on oracle data dictionary, it should help.

link|flag
Very resourcefull link, thank you! – jimzy Jan 16 at 15:23

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.