Parfile expdp problem [message #679709] |
Wed, 18 March 2020 08:45 |
|
fmonjes
Messages: 10 Registered: February 2020
|
Junior Member |
|
|
Hi
I have a problem with the expdp parfile utility specifically, I have the following configuration:
DIRECTORY = DUMP
DUMPFILE = PW_RECHAZO.dmp
CLUSTER = n
LOGFILE = PW_RECHAZO.log
TABLES = PORTAL.PW_RECHAZO
CONTENT = data_only
QUERY = "where STATISTICALID in (select pwe.ISTATISTICALID from portalenex.pw_statistics pwe where pwe.rec_cant = 1)"
and it indicates the following error
UDE-00014: invalid value for parameter, 'query'.
It is a simple query and it was validated and works fine from terminal.
Now doing tests I realized that the length of the field "ID_ESTADISTICA" was the problem, I came to that conclusion because
run the following
DIRECTORY = DUMP
DUMPFILE = PW_RECHAZO.dmp
CLUSTER = n
LOGFILE = PW_RECHAZO.log
TABLES = PORTAL.PW_RECHAZO
CONTENT = data_only
QUERY = "where ID_EMISOR in (select pwe.EM_ID from portalenex.pw_estadistica pwe where pwe.rec_cant = 1)"
The truth is I don't know why the STATISTICAL ID field indicates error and the other shorter field without error. Did there exist any limit parameters regarding queries in parfile?
they are all numeric type fields in the Database
Thanks
|
|
|
|
|
|
|
|