简单的通过管道导入数据库脚本

通过管道导入导出的优点:能加快速度,同时还可以避免单个文件大于2G的限制。

 #!/bin/ksh

imp_pipe=imp_pipe_test1

export imp_pipe

if [ ! -p  $imp_pipe ]

  then

      /sbin/mknod $imp_pipe

  else

     echo "pipe $imp_pipe exits!"

fi

if [ $? = 0 ]

  then

      echo "continue!"

     

      imp opics/opics  file=$imp_pipe buffer=4096000 ignore=y commit=y fromuser=plus10  touser=opics &

uncompress  </opics/dmp/plus10.dmp.Z  > $imp_pipe

  else

      echo "Creating pipe $imp_pipe error!"

fi

 

 

 

 

你可能感兴趣的:(职场,休闲,通过管道imp/exp)