ORA-1025??

2002-05-03 Thread Raghu Kota



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   TTFGLD410100
EXP-8: ORACLE error 1025 encountered
ORA-01025: UPI parameter out of range
. . exporting table   TTFGLD106100
EXP-8: ORACLE error 1025 encountered
ORA-01025: UPI parameter out of range
Export terminated successfully with warnings.


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 21

TIA
Raghu.



_
Chat with friends online, try MSN Messenger: http://messenger.msn.com

-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Raghu Kota
  INET: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).



Re: ORA-1025??

2002-05-03 Thread Stephane Faroult

Raghu Kota wrote:
 
 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   TTFGLD410100
 EXP-8: ORACLE error 1025 encountered
 ORA-01025: UPI parameter out of range
 . . exporting table   TTFGLD106100
 EXP-8: ORACLE error 1025 encountered
 ORA-01025: UPI parameter out of range
 Export terminated successfully with warnings.
 
 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 21
 
 TIA
 Raghu.
 

// *Action:  This usually indicates an error in a tool built on top
//   of the oracle dbms.  Report the error to your customer
//   support representative.


I remember having encountered 'out of range' problems when trying to
fetch more than 32K very small rows at a time ... It may be a foolish
suggestion, but I'd try with SMALLER values for parameters such as
BUFFER, etc. No idea what your default may be, but try to make it small
enough so as not be able to hold more than 30,000 rows. Otherwise, the
obvious workaround is to try WITHOUT direct=Y. Slower but usually safer.
-- 
Regards,

Stephane Faroult
Oriole Software
-- 
Please see the official ORACLE-L FAQ: http://www.orafaq.com
-- 
Author: Stephane Faroult
  INET: [EMAIL PROTECTED]

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: [EMAIL PROTECTED] (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).