hi !
the select command works but if I try the desc command on the same object it does not work.
Does any body know the reason why?
Thank you in advance,
chris
Printable View
hi !
the select command works but if I try the desc command on the same object it does not work.
Does any body know the reason why?
Thank you in advance,
chris
Do you own the object you are trying to run desc on?
Yes!
In which utility are you using the desc command. This command is specific of SQL*Plus.
Regards
Angel
I´m using "golden view" but I think that is not the problem... because it is working on the other data bases...
Is there a special role allowing to read such information?
chis
what is that golden view . is it a tool. where can i get more details about that. is there any download available for that.
pls inform.
regards
swaminathan
you can download a 30 days trial version here:
http://www.benthicsoftware.com/downloads.html
chris
What version of Oracle are you running (and which platform). We recently hit a simialr problem on 8.1.7 on AIX - it turned out to be a bug. Do you get an Oracle error no?
Are you trying to describe a table across a database link? There have been problems with this as well.
I use Oracle 8.1.7 - so it is a bug?Quote:
Originally posted by fraze
What version of Oracle are you running (and which platform). We recently hit a simialr problem on 8.1.7 on AIX - it turned out to be a bug. Do you get an Oracle error no?
The error is "table or view does not exist".
No, I do not try this.Quote:
Originally posted by marist89
Are you trying to describe a table across a database link? There have been problems with this as well.
chris
connect to DB from SQL*PLUS then describe the object see what happens.
hi ,
first of all tell me,do u want to desc the cammand or the object if u want to desc the object and it is in ur scheme then just type
DESC table emp ;
and if u what to desc the cammand so start the EXPLAIN cammand and then rerun the cammand
Doesnt sound like a the bug we were hitting. Is the table owned by the same user that you are doing the desc as. If not then you have to do to desc. or you can create a public synonym for that table as sys or system:
create public synonymfor . ;
03-08-2002, 11:48 AMfrazeQuote:
Originally posted by fraze
Doesnt sound like a the bug we were hitting. Is the table owned by the same user that you are doing the desc as. If not then you have to do to desc. or you can create a public synonym for that table as sys or system:
create public synonymfor . ;
Post didnt come out correctly. Should read
Doesnt sound like a the bug we were hitting. Is the table owned by the same user that you are doing the desc as. If not then you have to do to desc as. if not then you have to do
desc OWNER.TABLE_NAME
or create a public synonym for the table:
create public synonym TABLE_NAME for OWNER.TABLE_NAME;