Oracle FAQ Your Portal to the Oracle Knowledge Grid
HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US
 

Home -> Community -> Usenet -> c.d.o.misc -> Re: Why does a comment output a "doc>" ?

Re: Why does a comment output a "doc>" ?

From: Barbara Boehmer <baboehme_at_hotmail.com>
Date: 25 Oct 2005 15:18:17 -0700
Message-ID: <1130278697.836269.238120@o13g2000cwo.googlegroups.com>


You can set document or doc on or off, as demonstrated below.

scott_at_ORA92> -- with document on:
scott_at_ORA92> set document on
scott_at_ORA92> select sysdate from dual;

SYSDATE



25-OCT-2005 scott_at_ORA92> /*
DOC>* my comment
DOC>*/
scott_at_ORA92> select sysdate from dual;

SYSDATE



25-OCT-2005
scott_at_ORA92> -- with document off:
scott_at_ORA92> set document off
scott_at_ORA92> select sysdate from dual;

SYSDATE



25-OCT-2005 scott_at_ORA92> /*
scott_at_ORA92> select sysdate from dual;

SYSDATE



25-OCT-2005 scott_at_ORA92> Received on Tue Oct 25 2005 - 17:18:17 CDT

Original text of this message

HOME | ASK QUESTION | ADD INFO | SEARCH | E-MAIL US