27 octubre 2006

Importar datos en Oracle hechos con PIPE

#!/bin/ksh
rm -f import_pipe
mknod import_pipe p
chmod 666 import_pipe
nohup gunzip -c expdat.dmp.gz > import_pipe &
imp userid=system/manager file=import_pipe full=yes ignore=yes
log=importTESTDB.log

rm -f import_pipe

No hay comentarios.: