Problem with desc in v8

Eric

Member
I got the following error is v8 (beta) when descripting the htp.comment. However it worked for htp.center.

SQL> desc htp.comment
Object htp.comment does not exist.

SQL> desc htp.center
Parameter Type Mode Default?
--------- -------- ---- --------
CTEXT VARCHAR2 IN
 
This seems to work though:

SQL> desc HTP."COMMENT"

Apparently the comment keyword needs to be quoted here.
 
Could this perhaps be because comment is a reserved word? Comment on column...
Kindest regards,
Patrick
 
That is indeed odd. We'll check it out.

In fact: DESC HTP."COMMENT" did not work in 7.1, only DESC HTP.COMMENT.
 
Last edited:
Back
Top