Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

In PL/SQL begin .. end block comment on featue is not recognized. 1

Status
Not open for further replies.

praful24

Programmer
Feb 27, 2008
4
Some how comment on command feature does not work or recognized in PL/SQL begin ... end block.
Are there any alternatives?
 
Praful,

I presume that you have encountered one or more PL/SQL error messages with code that you have tried already. Could you please post here, the code that you have tried, plus (most importantly) the actual error message(s) that you have received?

[santa]Mufasa
(aka Dave of Sandy, Utah, USA)
[I provide low-cost, remote Database Administration services: www.dasages.com]
 
Do you mean the actual "comment on table xxxx..." command ? I think that's a DML type statement, so you will need to use execute immediate e.g.

execute immediate 'comment on table xxxx is yyyy';
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top