Oracle FAQ | Your Portal to the Oracle Knowledge Grid |
![]() |
![]() |
Home -> Community -> Mailing Lists -> Oracle-L -> ORA-1025??
Hi friends,
When Iam exporting thru pipes and mknod, Iam getting error:-
PL/SQL Release 2.3.2.0.0 - Production
Export done in US7ASCII character set
Note: indexes on tables will not be exported
About to export specified tables via Direct Path ...
. . exporting table TTFGLD410100EXP-00008: ORACLE error 1025 encountered ORA-01025: UPI parameter out of range
. . exporting table TTFGLD106100EXP-00008: ORACLE error 1025 encountered ORA-01025: UPI parameter out of range
My script is looks like..
PATH=$PATH:$ORACLE_HOME/bin
LOG=/data10
RBSCRIPTS=/rb/scripts/backup
# Create a named pipe
PIPE=/tmp/dsptab_pipe
if [ -a ${PIPE} ]
then
rm ${PIPE}
fi
mknod ${PIPE} p
# dd in from the named pipe and out to the tape device
dd if=${PIPE} of=/dev/rmt1 &
cd ${RBSCRIPTS}
exp file=${PIPE} parfile=dsptab > ${LOG}/dsptab.log 2>&1
TIA
Raghu.
-- Please see the official ORACLE-L FAQ: http://www.orafaq.com -- Author: Raghu Kota INET: raghukota_at_hotmail.com Fat City Network Services -- (858) 538-5051 FAX: (858) 538-5051 San Diego, California -- Public Internet access / Mailing Lists -------------------------------------------------------------------- To REMOVE yourself from this mailing list, send an E-Mail message to: ListGuru_at_fatcity.com (note EXACT spelling of 'ListGuru') and in the message BODY, include a line containing: UNSUB ORACLE-L (or the name of mailing list you want to be removed from). You may also send the HELP command for other information (like subscribing).Received on Fri May 03 2002 - 16:13:21 CDT
![]() |
![]() |