Calling SQLPLUS Code help [message #80184] |
Tue, 20 August 2002 13:07 |
Tyler
Messages: 123 Registered: January 2002
|
Senior Member |
|
|
Hello,
I have this code, it's calling sqlplus fine and finding the pwd,username, and connect string fine, but then when I tack on the last part (P:...) to execute that file when opened, SQLPLUS sorta' flashes like it opened and then it closes... suggestions?
declare
v_string varchar2(100);
begin
host('PLUS80W.EXE '||:user_name||'/'||:pwd||'@'||:connect_string||' '||'P:tpdpPRODUCE_PUBL_EXT.sql');
end;
|
|
|
|