i want to send message to all the compters (name will be specified)
using the net send OS command through my PL/sql procedure.
how do i run that procedure with computer name as parameter.
Printable View
i want to send message to all the compters (name will be specified)
using the net send OS command through my PL/sql procedure.
how do i run that procedure with computer name as parameter.
Hi.
You could try using this:
http://www.oracle-base.com/articles/...sFromPLSQL.php
It allows you to run host commands from PL/SQL. You will have to supply the whole command, but that can be a string concatinated with your machine name parameter.
Cheers
Tim...