man: NAME: nohup – run a command immune to hangups
nohup and SQL*Plus
Nohup and SQL*Plus can be easily used together:
$ nohup sqlplus -s remi/remivisser @update.sql &
[4] 14433
$ Sending output to nohup.out
$
$
Prevent password from being displayed in the ps list
$ export password=remivisser
$ nohup sqlplus -s remi/${password} @update.sql &
[8] 16768
$ Sending output to nohup.out
$
$
nohup
man: NAME: nohup – run a command immune to hangups
nohup and SQL*Plus
Nohup and SQL*Plus can be easily used together:
Prevent password from being displayed in the ps list
$ export password=remivisser $ nohup sqlplus -s remi/${password} @update.sql & [8] 16768 $ Sending output to nohup.out $ $