can't Call host command on Oracle Forms 10g on LINUX ap server
431490Oct 20 2004 — edited Oct 20 2004I have oracle developer suite 10g installed on Windows.I want to do some file operation in ap server(linux as 3)
I can use the script in the terminal on linux. but i can't use it on form . this is the button press trigger!
declare
a varchar2(200);
begin
a:='mkdir -p /data/apps/ygm';
-- message(a);
host(a);
end;
When the trigger execute, the linux hasn't do anything!
What should I do?