Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.server -> Re: extract stored pl/sql pcode
Method 1: Use can extract the code with simple SELECT statements from SQL Plus.
Method 2: My SQL PlusPlus 2.0 (freeware) helps you to do all this very easily. e.g.
SQL> exec s.getpro('give_raise')
| CREATE OR REPLACE | procedure give_raise ( | p_deptno in number, | p_raise_percent in number ) | as | begin | update emp set sal = sal + (sal * p_raise_percent * .01) | where deptno = p_deptno; | | commit; | end give_raise; | /
You can generate entire source for a database using a single command and store it in a single file.
regards,
M. Armaghan Saqib
+--------------------------------------------------------------- | 1. SQL PlusPlus => Add power to SQL Plus command line | 2. SQL Link for XL => Integrate Oracle with XL| 3. Oracle CBT with sample GL Accounting System | Download free: http://www.geocities.com/armaghan/
+---------------------------------------------------------------immo <iwetzel_at_gmx.de> wrote in message news:86n33j$cqk$1_at_nnrp1.deja.com...
![]() |
![]() |