Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Usenet -> c.d.o.tools -> Re: How to kill active 8i session from W98 client, and have executing procedure continue on server???
From a unix script:
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
#!/bin/sh
echo "Starting"
sqlplus login/password_at_instance << EOSQL
whatever sql you need to execute
;
EOSQL
echo "Done"
>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>
Save this to a file called foo.sh.
Then from the command line,
-->> nohup foo.sh > foo.sh.log & [return]
Log off and go home.
-- Galen Boyer Database Architect Primix Solutions, www.primix.comReceived on Wed Jul 19 2000 - 00:00:00 CDT
![]() |
![]() |