Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.misc -> How to run a OS Command from PLSQL ?
Hi !
Can I run an Operating System program from a PLSQL program ? For example to send a mail:
declare
email varchar2(50) := 'john_at_home'; begin
SYSTEM('mail ' || email || ' < hello'); end;
Note: SYSTEM is the function I'm looking for.
Thanks in advance
Rui Anastácio
Received on Mon Sep 06 1999 - 10:14:03 CDT
![]() |
![]() |