Hello,
I am new to Perl and am converting a batch file written to do a bunch of
things with Oracle to Perl.
The way I am converting it to Perl is to make bunch of system  calls and
wondering if I can make it more efficient 'cause each call to system would
be expensive in terms of resources etc. Here's a sample:
system ("lsnrctl start"); or `lsnrctl start` ;
system ("sqlplus internal @xyz.sql"); or `sqlplus internal @xyz.sql`;
system ("lsnrctl stat"); or `lsnrctl stat`;

Now is this the best way to code or I can some how club 2 or more system
calls.
Thanks for your help 
Varun 



_______________________________________________
Perl-Win32-Users mailing list
[EMAIL PROTECTED]
http://listserv.ActiveState.com/mailman/listinfo/perl-win32-users

Reply via email to