Is there a way for us to pick up all the comments written inside a plsql package or procedure throug
Can we just pick up comments that have been written in plsql code.For example
Declare
//declare variables to hold values
FirstNumber Number;
SecondNumber Number;
Total Number;
Begin
//Code Begins
Total:=FirstNumber +SecondNumber ;
//Addition is complete
/*
The code is complete
and it works fine
*/
End;
Now is there a way to just get the following as output
declare variables to hold values
Code Begins
Addition is complete
The code is complete
and it works fine
Please suggest.
Uday
0