Full import error : "user does not exists"

Hi all,
I had 5 separated windows based servers (32bit) with oracle database 9i. I decided to centralize them into one server. So, I configured a new Linux (64bit) and install an Oracle 10gR2. Then I configured a starter database with dbca. I prepared a full dump file from one of old servers and successfully full imported it into starter database on new Linux (10g) server. After that I configured another database using dbca. But when I wanted to full import the previous dump file into new database I have got the error "user does not exists" regarding some demo schema and import terminated unsuccessfully.
I decided to create users regarding the errors and restart the import. After each user creation I was getting a new error for a new user account.
My main question is why first time import terminated successfully without any error but second one in new database raised error?
Thank
Iman
Edited by: Iman.Jam on Aug 25, 2009 9:38 AM

Hi yingkuan,
imp full=y file=.... log=..... userid=system/manager@orcl
ALTER SESSION SET CURRENT_USER = "HR"
ORA-.... : user does not exists
And I know that import will create users that are not exists. Actually, all my specified schema are created but not some of accounts
Regards,
Iman
Edited by: Iman.Jam on Aug 25, 2009 9:59 AM

Similar Messages

  • Import Error: ORA-01435 : User does not exist

    Hi all,
    I am importing a dump into 11g Database, the dump taken from Old Financial release 6 [EBIZ]
    i given this command:
    IMP FILE=EXPDUMP.DMP BUFFER=524288000 FULL=Y IGNORE=Y
    Import user system and password given...
    Once its started and getting error
    +"ALTER USER "PERFUSER" QUOTA UNLIMITED ON "OTHERD""+
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'PERFUSER' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    +"ALTER USER "DUB_QUERY" QUOTA UNLIMITED ON "OTHERD""+
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'DUB_QUERY' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    +"ALTER USER "OEMV22" QUOTA UNLIMITED ON "OEM_REPOSITORY""+
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'OEMV22' does not exist
    IMP-00017: following statement failed with ORACLE error 1918:
    +"ALTER USER "W03063_ITD" QUOTA UNLIMITED ON "TEMP" QUOTA UNLIMITED ON "OEM_R"+
    +"EPOSITORY""+
    IMP-00003: ORACLE error 1918 encountered
    ORA-01918: user 'W03063_ITD' does not exist
    +. importing APPS's objects into APPS+
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    +. importing DUB_QUERY's objects into DUB_QUERY+
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    +. importing SYSTEM's objects into SYSTEM+
    +. importing APPLSYS's objects into APPLSYS+
    +"ALTER SESSION SET CURRENT_SCHEMA= "APPLSYS""+
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    IMP-00000: Import terminated unsuccessfully
    Kindly advice me what is the wrong,,
    I have created all the data files same like Old Database. so while importing All the USERs will created, if its correct then why this "*ORA-01435 : User does not exist*" coming...
    Regards
    Paja
    Edited by: Hameed on Jul 2, 2012 4:50 AM

    Create tablespace :
    select 'CREATE TABLESPACE '||TABLESPACE_NAME||' DATAFILE '||FILE_NAME||' SIZE '||BYTES||' autoextend on '||';'
    from dba_data_files
    order by tablespace_name;
    Create User :
    select ' CREATE USER '||USERNAME||' IDENTIFIED BY '||USERNAME||' DEFAULT TABLESPACE '||DEFAULT_TABLESPACE||' temporary tablespace ' ||' TEMP quota unlimited on '|| DEFAULT_TABLESPACE||';'
    from dba_users
    order by USERNAME;
    Create Role
    select 'CREATE ROLE ' || ROLE || ' ;'
    from DBA_ROLES
    order by ROLE
    Grant Role :
    select ' GRANT '|| GRANTED_ROLE || ' to ' || GRANTEE || ' ;'
    from DBA_ROLE_PRIVS
    order by GRANTED_ROLE
    Br
    osama
    Edited by: Osama-mustafa on Jul 2, 2012 5:47 PM

  • Import fails with ORA-01435: user does not exist?

    I have a dump of a 8i database done with FULL=Y. I have tried to import this into an XE beta 3 instance with FULL=Y, but I keep getting ORA-01435: user does not exist. Is this expected behavior because of some XE thing or is it me being an idiot? I would have expected the imp program to ignore that the tablespaces are not the same and just stuffed everything into the default tablespace of the current user (SYSTEM) and creating unknown schemas whenever one was encountered.
    Regards Pete

    Peter,
    could you please post the command line of the import and the logfile, so that we can get a bit more of information?
    Thanks,
    ~Dietmar.

  • Error : Selected user does not exist

    I m trying to send the alert messages. And for this I am using message object of DIAPI and sending alert to usercode 'manager' of SAP B1. But i m facing the error that 'Selected user does not exist' and it is present in the OUSR table for the user related details.

    Hi, Amit Jadon!
    If you send a code snippet, it will be more helpfull for us to solve a problem.
    It's my "sending for yourself"  example. Log in with a "problem" user and try it:
    public void SendMess(string Mess, string Subj)
      int errn;     
      string mes;
      SAPbobsCOM.Messages msg;
      msg = (SAPbobsCOM.Messages) pCmp.GetBusinessObject(SAPbobsCOM.BoObjectTypes.oMessages); //pCmp - company obj
    msg.MessageText = Mess;
    msg.Subject = Subj;
    msg.Recipients.Add();
    msg.Recipients.SetCurrentLine(0);          
    msg.Recipients.UserCode = pCmp.UserName;
    msg.Recipients.NameTo = pCmp.UserName;
    msg.Recipients.SendInternal = SAPbobsCOM.BoYesNoEnum.tYES;
    msg.Add();
    pCmp.GetLastError(out errn, out mes);
    if (0 != errn)
        SBOApp.MessageBox("Error in  msg.Add(); " + errn + ", " + mes, 1, "Ok", null, null);
    HTH,
    Alexey

  • Error: The user does not exist or is not unique - when setting permission programmatically

    Hi,
    I am custom Sequential workflow in which I am breaking the permission and setting permission to list item.
    I have used the below code for setting Permission:
    SPRoleDefinition oSPRoleDefinition = oSPWeb.RoleDefinitions["RoleName"];
    //Grant permission to Manager
    SPRoleAssignment oSPRoleAssignmentManager = new SPRoleAssignment(strManagerLanID, strManagerEmail, "", "");
    oSPRoleAssignmentManager.RoleDefinitionBindings.Add(oSPRoleDefinition);
    CurrentListItem.RoleAssignments.Add(oSPRoleAssignmentManager);
    I am getting the error as :
    Error: The user does not exist or is not unique.
    How to fix this?
    Thanks

    I think you misunderstood the solution proposed by frederic, what he is suggesting is that the error doesn't come from your code but from the user account
    have you tried with another account ? (maybe the one you are using to log to your environment)
    With this information, it will help us to know if the problem comes from your code or from the user account
    Best regards, Christopher.
    Blog |
    Mail
    Please remember to click "Mark As Answer" if a post solves your problem or
    "Vote As Helpful" if it was useful.
    Why mark as answer?

  • ORA-01435: user does not exist when using imp utility

    I installed Oracle 8.1.7.0.0 successfully on WINDOWS 2000 and created a database TEST using DBCA. Then I used a script to creat a tablespace and a user in TEST databse. I could use the imp utility to import the data (a dmp file) to the TEST database without any problem. But after I applied a patch to bring up the version to Oracle 8.1.7.4.1, I got the following error when I tried to use the imp utility again to import the data (a dmp file) to the TEST database.
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    IMP-00000: Import terminated unsuccessfully
    I checked that I created the same user test (as it is in dmp file I wanted to import) on TEST, and I could login to TEST using:
    sqlplus test/test@TEST
    The command I used is:
    imp system/password@TEST file=test.dmp full=y log=importTEST.TEST.tmp
    I also tried to use the following command:
    imp system/password@TEST file=test.dmp fromuser=test touser=test log=importTEST.TEST.tmp
    and got the same error as before.
    Anyone has any clues what could go wrong? The only difference for me to import the data on TEST is that the
    previous successful import was done in Oracle 8.1.7.0.0.
    Is it possible that I missed something during the applying of the patch 8.1.7.4.1?
    Thanks, and your help is greatly appreciated.
    Jane

    Ther is a set of instruction to be followed after installing the patch set 8.1.7.4.1 after running it thru OUI.They are as follows. Please complete these steps and u should not have problems any more.
    When applying this patchset on Windows NT and Windows 2000, you must log onto the system as a user with Administrative privileges (e.g., as a user which is a member of the local Administrators group).
    1.Disabling system triggers.
    Before performing the next step, you must first set SYSTEMTRIG_ENABLED = FALSE in the initialization parameter file. To do this add the following line to your init<sid>.ora file and restart the database (see Note 149948.1 in Metalink for more information on this issue).
    systemtrig_enabled=false
    2.Invoke SQL*Plus (sqlplus), connect as internal and run the following:
    select * from duc$ where PACK='JIS$INTERCEPTOR$' ;
    If no rows were returned go to the next step. If a row was returned delete it using the following:
    delete from duc$ where PACK='JIS$INTERCEPTOR$' ;
    commit;
    3.Invoke SQL*Plus (sqlplus), connect as internal and run the following SQL scripts with event 10520 set. NOTE: This event is not intended for regular database operation and when turned on below by the 'ALTER SESSION' command will automatically be turned off by the subsequent 'CONNECT' command.
    ALTER SESSION SET EVENTS '10520 TRACE NAME CONTEXT FOREVER, LEVEL 10';
    ?/rdbms/admin/catalog.sql
    ?/rdbms/admin/catproc.sql
    ?/rdbms/admin/catrep.sql (This only needs to be run if you are using symmetric/advanced replication. This is not necessary for sites using dblinks and read-only snapshots if symmetric/advanced replication is not installed)
    CONNECT / AS SYSDBA;
    update obj$ set status=5 where type#=29 and owner#!=0;
    commit;
    4.You can ignore this step if you have already executed it as part of a previous 8.1.7 patch set install.
    If Java has previously been loaded into the database, invoke SQL*Plus (sqlplus), connect as internal and run the following SQL DDL command(* Note:If Java has not previously been loaded into the database, skip this step).:
    SQL> create or replace java system
    2 /
    (Note that the / (slash) is important to ensure the execution of the command).
    To ensure the correct installation of the XDK in the database run the following 2 scripts (Bug 2115227):
    $ORACLE_HOME/oracore/admin/initxml.sql
    $ORACLE_HOME/rdbms/admin/catxsu.sql
    * To determine whether Java has previously been loaded into the database:
    invoke SQL*Plus (sqlplus), connect as internal and run the following:
    SQL> select count(*) from all_objects where object_type like 'JAVA%';
    Java is installed if you get a non zero result returned from the query.
    5.You can ignore this step if you have already executed it as part of a previous 8.1.7 patch set install:
    If Java has previously been loaded into the database, invoke SQL*Plus (sqlplus), connect as internal and run the following scripts which are located in $ORACLE_HOME/javavm/install ( Note: If Java has not previously been loaded into the database, you can skip this step):
    load_jis.sql
    jisja.sql
    initjsp.sql
    jspja.sql
    Notes:
    When running the $ORACLE_HOME/javavm/install/jisja.sql script the following error may be reported and can be ignored:
    call jis_exit_java_session(0)
    ERROR at line 1:
    ORA-29515: exit called from Java code with status 0
    Bug 1459233 was filed against this problem which is fixed in 9i.
    6.If you deleted a row from duc$ in step 8 then reinsert it again. Invoke SQL*Plus (sqlplus), connect as internal and run the following SQL:
    insert into duc$ (OWNER, PACK, PROC, FIELD1, OPERATION#, SEQ) values ('SYS', 'JIS$INTERCEPTOR$', 'USER_DROPPED', 0, 1, 1);
    commit;
    7.Enabling system triggers.
    You must either remove SYSTEMTRIG_ENABLED from the initialization parameter file or explicitly set it to TRUE before attempting any other patch set post-install steps. Restart the database.
    8.This step is optional - it will recompile all invalid PL/SQL packages now rather than when accessed for the first time - you can also use utlrcmp.sql to parallelize this. Invoke SQL*Plus (sqlplus), connect as internal and run the following SQL script:
    ?/rdbms/admin/utlrp.sql
    9.Execute the following steps only if you have installed Oracle interMedia Text in the database you are attempting to modify:
    If you have not previously unlocked the ctxsys account and supplied a password for that account, you need to do so. (If you have needed to use Oracle Text in any way prior to applying the patchset, you will have already performed this step, and you can skip this.) Do so by issuing the following statement:
    ALTER USER ctxsys IDENTIFIED BY <passwd> ACCOUNT UNLOCK;
    If you have already installed 8.1.7.2 or 8.1.7.3, go directly to step 7 below.
    If you have already installed 8.1.7.1, go directly to step 5 below.
    CONNECT ctxsys/<passwd>;
    @?/ctx/admin/upgrade/u0801071.sql
    CONNECT ctxsys/<passwd>;
    @?/ctx/admin/upgrade/u0801072.sql
    CONNECT / AS SYSDBA;
    @?/ctx/admin/upgrade/s0801074.sql
    CONNECT ctxsys/<passwd>
    @?/ctx/admin/dr0pkh.sql
    @?/ctx/admin/dr0plb.sql
    @?/ctx/admin/dr0type.plb
    @?/ctx/admin/dr0typec.plb
    9.You can ignore this step if you have already executed it as part of a previous 8.1.7 patch set install:
    The installation of this patch set fixes a potential security hole in the XSQL Servlet - see here for more detail. The patchset installation does not, however, modify any of the Oracle HTTP Server configuration files to reflect changes to the XSQL Servlet installation. If you have previously installed the Oracle HTTP Server, you will need to update one of the configuration files manually after the patchset installation is complete. If you do not do so, the XSQL Servlet may not work in the context of the Oracle HTTP Server after the patchset is installed. To update your Oracle HTTP Server configuration, perform the following steps:
    1) Edit the file: $ORACLE_HOME/Apache/Jserv/conf/jserv.properties
    2) Search for the string: "XSQLConfig.xml File location"
    3) Modify the parameter wrapper.classpath on the line immediately following the above string to read: $ORACLE_HOME/oracore/admin
    4) Save the file.
    10.You can ignore this step if you have already executed it as part of a previous 8.1.7 patch set install:
    The installation of this patch set fixes a potential security hole in the PL/SQL XML parser - see here for more detail. To load the new XML parser in to the database, run the following script as user SYS:
    ? /xdk/plsql/parser/bin/load.sql
    11.If you are using the RMAN catalog then upgrade it as follows:
    rman catalog <user/passwd@alias>
    upgrade catalog;
    upgrade catalog;
    The post install actions are now complete and the database is now ready for use.

  • Shows 'ORA-01435: user does not exist' for the existing user

    Hi All,
    when I am trying to import this dump into oracle 10g, I am getting following error.
    I have created a talespace 'EXIM' for this already
    this is my user creation command
    CREATE USER EXIM PROFILE DEFAULT IDENTIFIED BY pass DEFAULT TABLESPACE USERS TEMPORARY TABLESPACE TEMP
    ACCOUNT UNLOCK;
    GRANT dba to EXIM;
    the user exists in the dba_users too.
    E:\Eximbills>imp exim/pass file=e:\eximbills\exim.dmp fromuser=exim touser=ex
    im;
    Import: Release 10.1.0.2.0 - Production on Tue Jan 8 13:00:44 2008
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.1.0.2.0 - Production
    With the Partitioning, OLAP and Data Mining options
    Export file created by EXPORT:V10.02.01 via conventional path
    import done in WE8MSWIN1252 character set and AL16UTF16 NCHAR character set
    export client uses ZHS16GBK character set (possible charset conversion)
    export server uses UTF8 NCHAR character set (possible ncharset conversion)
    IMP-00008: unrecognized statement in the export file:
    . importing EXIM's objects into EXIM;
    IMP-00003: ORACLE error 1435 encountered
    ORA-01435: user does not exist
    Import terminated successfully with warnings.
    thanks in advance
    soorya

    This is the error I'm getting whenever I am trying to import 'imp eximsys/h4rdw0rk file=e:eximbills\eximsys.dmp full=y'
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '424F435043303031202"
    "02020'; SREC.MAXVAL := '424F43504330303120202020'; SREC.EAVS := 0; SREC.CHV"
    "ALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(344299236148902000000000000"
    "000000000,344299236148902000000000000000000000); SREC.BKVALS := DBMS_STATS."
    "NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHE"
    "R_HEADER"','"C_LAST_MODI_BU"', NULL ,NULL,NULL,1,1,0,srec,13,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B0109010101'; SR"
    "EC.MAXVAL := '786C0804010101'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454110,2454683); SREC.BKVALS := DBMS_STATS.NUM"
    "ARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_H"
    "EADER"','"C_LAST_MODI_DATE"', NULL ,NULL,NULL,29,.0344827586206897,0,srec,8"
    ",6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '50433030314F5031202"
    "020202020202020202020202020202020202020202020'; SREC.MAXVAL := '765F70636F7"
    "03031202020202020202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(4167464879929240000000"
    "00000000000000,614626762547395000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_LAST_MODI_OP"', NULL ,NULL,NULL,3,.333333333333333,0,sr"
    "ec,33,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B01010A1D18'; SR"
    "EC.MAXVAL := '786B0801140C01'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454102.39471065,2454314.79930556); SREC.BKVALS"
    " := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NU"
    "LL,'"TRX_VOUCHER_HEADER"','"C_LAST_MODI_TIME"', NULL ,NULL,NULL,7308,.00013"
    "6836343732895,0,srec,8,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '72756C655F746573744"
    "32E786D6C202020202020202020202020202020202020'; SREC.MAXVAL := '72756C655F7"
    "46573744D2E786D6C202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(5943034718115330000000"
    "00000000000000,594303471811533000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_MAIL_RULE"', NULL ,NULL,NULL,2,.5,47698,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '4144343030303430373"
    "030303530342020202020202020202020202020202020'; SREC.MAXVAL := '51413430303"
    "03530373038393134342020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(3388826344357990000000"
    "00000000000000,421898536943546000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_MAIN_REF"', NULL ,NULL,NULL,3294,.000303582270795386,0,"
    "srec,41,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '44495343'; SREC.MAX"
    "VAL := '64736120'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS"
    "_STATS.NUMARRAY(354563398993257000000000000000000000,5215698580320240000000"
    "00000000000000); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DB"
    "MS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_MODULE"', NULL ,N"
    "ULL,NULL,14,.0714285714285714,0,srec,5,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '2020202020202020202"
    "020202020202020202020202020202020202020202020'; SREC.MAXVAL := '63696E64797"
    "46573742020202020202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(1668050818239890000000"
    "00000000000000,516175788196539000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_MSEND_NAME"', NULL ,NULL,NULL,4,.25,1198,srec,33,6); EN"
    "D;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '424F435043303031202"
    "02020'; SREC.MAXVAL := '424F43504330303120202020'; SREC.EAVS := 0; SREC.CHV"
    "ALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(344299236148902000000000000"
    "000000000,344299236148902000000000000000000000); SREC.BKVALS := DBMS_STATS."
    "NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHE"
    "R_HEADER"','"C_ORG_UNIT_CODE"', NULL ,NULL,NULL,1,1,16,srec,13,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '20'; SREC.MAXVAL :="
    " '562D46696E616C3A31'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := "
    "DBMS_STATS.NUMARRAY(166153499473115000000000000000000000,447455816866904000"
    "000000000000000000); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2"
    "; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PEPRTING_INFO"
    ""', NULL ,NULL,NULL,2,.5,977,srec,3,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '20'; SREC.MAXVAL :="
    " '562D46696E616C3A31'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := "
    "DBMS_STATS.NUMARRAY(166153499473115000000000000000000000,447455816866904000"
    "000000000000000000); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2"
    "; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PRINTER_NAME""
    "', NULL ,NULL,NULL,3,.333333333333333,960,srec,3,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '5B30303130303130303"
    "13A4E505D5B3030313030313030313A4E525D'; SREC.MAXVAL := '5B424F4350433030313"
    "A4E525D'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NU"
    "MARRAY(473476387962467000000000000000000000,4738439330178760000000000000000"
    "00000); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS."
    "SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PRINT_TO_BU"', NULL ,NULL,"
    "NULL,4,.25,47203,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := NULL; SREC.MAXVAL :="
    " NULL; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(0,0); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STAT"
    "S.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PRTING_INFO"', NULL ,NUL"
    "L,NULL,0,0,47720,srec,0,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '41'; SREC.MAXVAL :="
    " '59'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(338150878155639000000000000000000000,4627660027604750000000000000000000"
    "00); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET"
    "_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PRT_MODE"', NULL ,NULL,NULL,3"
    ",.333333333333333,46148,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '20'; SREC.MAXVAL :="
    " '59'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(166805081823989000000000000000000000,4627660027604750000000000000000000"
    "00); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET"
    "_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_PRT_STATE"', NULL ,NULL,NULL,"
    "4,.25,0,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '424F435043303031202"
    "02020'; SREC.MAXVAL := '424F43504330303120202020'; SREC.EAVS := 0; SREC.CHV"
    "ALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(344299236148902000000000000"
    "000000000,344299236148902000000000000000000000); SREC.BKVALS := DBMS_STATS."
    "NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHE"
    "R_HEADER"','"C_RELEASE_BU"', NULL ,NULL,NULL,1,1,558,srec,13,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B0109010101'; SR"
    "EC.MAXVAL := '786B0808010101'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454110,2454321); SREC.BKVALS := DBMS_STATS.NUM"
    "ARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_H"
    "EADER"','"C_RELEASE_DATE"', NULL ,NULL,NULL,22,.0454545454545455,558,srec,8"
    ",6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '50433030314F5031202"
    "020202020202020202020202020202020202020202020'; SREC.MAXVAL := '765F70636F7"
    "03031202020202020202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(4167464879929240000000"
    "00000000000000,614626762547395000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_RELEASE_OP"', NULL ,NULL,NULL,3,.333333333333333,558,sr"
    "ec,33,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '20'; SREC.MAXVAL :="
    " '46'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(166805081823989000000000000000000000,3641123624483130000000000000000000"
    "00); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET"
    "_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_SETTL_AC_PS"', NULL ,NULL,NUL"
    "L,2,.5,0,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '654C4F414E202020202"
    "020202020202020202020202020202020202020202020'; SREC.MAXVAL := '654C4F414E2"
    "02020202020202020202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(5259697250777070000000"
    "00000000000000,525969725077707000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_STP_CODE"', NULL ,NULL,NULL,1,1,1330,srec,33,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '51415F4D41494C5F544"
    "54D50310251415F4D41494C5F54454D5032'; SREC.MAXVAL := '63696E647974657374'; "
    "SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(421"
    "901952750269000000000000000000000,516175788196539000000000000000000000); SR"
    "EC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN"
    "_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_TEMPLATES_NAME"', NULL ,NULL,NULL,5,"
    ".2,47641,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '3230303730313039313"
    "032333032393435323630303631343731393039343137'; SREC.MAXVAL := '32303037303"
    "83237313035333437353331303631313535363432363135373736'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(2605922186194540000000"
    "00000000000000,260592218619487000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_TRX_INDX"', NULL ,NULL,NULL,47720,.0000209555741827326,"
    "0,srec,33,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '3132333133313233202"
    "020202020202020202020202020202020202020202020'; SREC.MAXVAL := '77657277722"
    "02020202020202020202020202020202020202020202020202020'; SREC.EAVS := 0; SRE"
    "C.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(2554407224113300000000"
    "00000000000000,619940918512825000000000000000000000); SREC.BKVALS := DBMS_S"
    "TATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_V"
    "OUCHER_HEADER"','"C_TRX_REF"', NULL ,NULL,NULL,3294,.000303582270795386,0,s"
    "rec,41,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '424F435043303031202"
    "02020'; SREC.MAXVAL := '424F43504330303120202020'; SREC.EAVS := 0; SREC.CHV"
    "ALS := NULL; SREC.NOVALS := DBMS_STATS.NUMARRAY(344299236148902000000000000"
    "000000000,344299236148902000000000000000000000); SREC.BKVALS := DBMS_STATS."
    "NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHE"
    "R_HEADER"','"C_UNIT_CODE"', NULL ,NULL,NULL,1,1,0,srec,13,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '4D'; SREC.MAXVAL :="
    " '4D'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(399806858107182000000000000000000000,3998068581071820000000000000000000"
    "00); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET"
    "_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_VCH_STATUS"', NULL ,NULL,NULL"
    ",1,1,1330,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '4D'; SREC.MAXVAL :="
    " '58'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(400458440458057000000000000000000000,4575737059019400000000000000000000"
    "00); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET"
    "_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"C_VOUCHER_STATE"', NULL ,NULL,N"
    "ULL,3,.333333333333333,0,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B0109010101'; SR"
    "EC.MAXVAL := '786B081B010101'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454110,2454340); SREC.BKVALS := DBMS_STATS.NUM"
    "ARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_H"
    "EADER"','"D_SYS_OP_DATE"', NULL ,NULL,NULL,47,.0212765957446809,0,srec,8,6)"
    "; END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B0109010101'; SR"
    "EC.MAXVAL := '786B0809010101'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454110,2454322); SREC.BKVALS := DBMS_STATS.NUM"
    "ARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_H"
    "EADER"','"D_SYS_REL_DATE"', NULL ,NULL,NULL,33,.0303030303030303,558,srec,8"
    ",6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '80'; SREC.MAXVAL :="
    " '80'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(0,0); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STAT"
    "S.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"I_CPY_NUMS"', NULL ,NULL,N"
    "ULL,1,1,1330,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '3A5B6365654766'; SR"
    "EC.MAXVAL := 'C10D'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DB"
    "MS_STATS.NUMARRAY(-1002000030,12); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1);"
    " SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"I"
    "_EVENT_TIMES"', NULL ,NULL,NULL,88,.0113636363636364,0,srec,8,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '80'; SREC.MAXVAL :="
    " '80'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(0,0); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STAT"
    "S.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"I_PECPY_NUMS"', NULL ,NULL"
    ",NULL,1,1,1330,srec,2,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B01010A1D08'; SR"
    "EC.MAXVAL := '786B0801140C01'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454102.39452546,2454314.79930556); SREC.BKVALS"
    " := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NU"
    "LL,'"TRX_VOUCHER_HEADER"','"T_SYS_OP_TIME"', NULL ,NULL,NULL,7319,.00013663"
    "0687252357,0,srec,8,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := '786B01010A1D18'; SR"
    "EC.MAXVAL := '786B0801102B16'; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NO"
    "VALS := DBMS_STATS.NUMARRAY(2454102.39471065,2454314.65440972); SREC.BKVALS"
    " := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STATS.SET_COLUMN_STATS(NU"
    "LL,'"TRX_VOUCHER_HEADER"','"T_SYS_REL_TIME"', NULL ,NULL,NULL,7139,.0001400"
    "75640846057,558,srec,8,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00017: following statement failed with ORACLE error 20001:
    "DECLARE SREC DBMS_STATS.STATREC; BEGIN SREC.MINVAL := NULL; SREC.MAXVAL :="
    " NULL; SREC.EAVS := 0; SREC.CHVALS := NULL; SREC.NOVALS := DBMS_STATS.NUMAR"
    "RAY(0,0); SREC.BKVALS := DBMS_STATS.NUMARRAY(0,1); SREC.EPC := 2; DBMS_STAT"
    "S.SET_COLUMN_STATS(NULL,'"TRX_VOUCHER_HEADER"','"T_SYS_TRX_TIME"', NULL ,NU"
    "LL,NULL,0,0,47720,srec,1,6); END;"
    IMP-00003: ORACLE error 20001 encountered
    ORA-20001: Invalid or inconsistent input values
    ORA-06512: at "SYS.DBMS_STATS", line 4194
    ORA-06512: at line 1
    IMP-00041: Warning: object created with compilation warnings
    "CREATE FORCE VIEW "EXIMSYS"."TET_TEST" ("CUST_ID",""
    "CUST_NM","CUST_NM_ADD","C_CP_UNIT_CODE") AS "
    "SELECT CUST_MASTER.CUST_ID, CUST_MASTER.CUST_NM, CUST_MASTER.CUST_NM_ADD, C"
    "UST_MASTER.C_CP_UNIT_CODE "
    " FROM EXIMTRX.CUST_MASTER CUST_MASTER "
    " WHERE CUST_MASTER.CUST_ID='10245'"
    About to enable constraints...
    Import terminated successfully with warnings.
    Thanks,

  • The user does not exist or is not unique - workflow problem

    I am using Solution Starters Dynamic Management workflow on my Project Server 2010.  I was working fine for a year now, but today all workflows were broken when someone tried to submit them to a next stage. "Workflow terminated. An error has occurred
    in the workflow."
    I tried debbuging the workflow and it seems to be OK, but the problem appears when it needs to assign tasks to the approvers (they are in the Approvers group). When I remove users from the group that represents approvers (and leave that group empty), it
    works fine, so I am guessing that users (who need to approve the stage) are the problem. My administrators are saying that there were no updates or changes on AD machine.
    I don't have problem with users in any of people picker fields or anywhere else on the site. I am using claims auth.
    What could be the reason for this behavior??
    These are main errors from the log:
    Failed to persist workflow instance: 7dc2e035-cd02-4284-b851-a829e372a809 with error code: 5, instance data size: 29578, internal state: Running, processing id: 1e2211d2-ef7b-4416-90ef-ac041396c200    2f83db27-34da-4275-a42e-0625240af921
    The user does not exist or is not unique.
    WinWF Internal Error, terminating workflow Id# 7dc2e035-cd02-4284-b851-a829e372a809   
    System.ArgumentOutOfRangeException: Specified argument was out of the range of valid values.  Parameter name: additionalNodes     at Microsoft.Office.Workflow.Actions.OfficeTask.ProcessTaskError(Object sender, EventArgs e)    
    at System.Workflow.ComponentModel.ActivityExecutorDelegateInfo`1.ActivityExecutorDelegateOperation.Run(IWorkflowCoreRuntime workflowCoreRuntime)     at System.Workflow.Runtime.Scheduler.Run()

    It appears that this isn't the problem with users, but it is a problem with Office Tasks. This is the main error in ULS logs (same as in the previous post):
    "Specified argument was out of the range of valid values.  Parameter name: additionalNodes"
    I noticed that all content types are gone from my pwa site. Is it possible that my workflow is causing problems when adding tasks because somebody deleted all content types??

  • User does not exist in this period / ESS does not work anymore ;-(

    Hello experts,
    starting any ess application on portal side (leave request), I get the follwoing error code:
    com.sap.pcuigp.xssfpm.java.FPMRuntimeException: User TESTUSER does not exist in this period
    Starting application personal data I get the message: "There are no services in the area."
    I know, that this error has often been discussed in this forum. So I check the hints I found, but I could not solve my problem.
    The HR user TESTUSER is assigned to the portal user TESTUSER in IT0105 and the user is not exceeded.
    TESTUSER got SAP_ALL on HR side.
    The error appears for all users, that worked propably a few days before.
    Login on portal side and HR works. ESS overview is shown for TESTUSER. For a user that has not a login to HR system it does not appear. So the single singn on (SSO) between portal and HR system seems to work.
    The ESS applications worked fine until two days ago. Portal guys said, they had not done any changes on portal side.
    Where could the error occure on HR side? How can I recognize if any changes have been made on HR side?
    Thank you for your help.

    TX HRUSER seems not working.
    Using the function 'Set Up and Maintain ESS User (Overview)' in TX HRUSER with my test-PERNR it is shown under 'Employees with deleted users'.
    Clicking on it I got the Information:
    PERS.NO: 12345678 (i.e.) NAME: Test User FROM: 01.01.2011 TO: 31.12.9999 USER: Name:  FROM: TO: User does not exist.
    But in IT0105 the PERNR is assigned to user TESTUSER in that period.
    When I try to assign  PERNR to TESTUSER with TX HRUSER under 'Assign Employees to Existing Users' I read the follwing information:
    USER: TESTUSER Name: FROM: 01.01.2011 TO: 31.12.9999 USER GROUP: IT PERS.NO.: NAME: FROM: TO: no employee assigned.
    Trying to 'assign employees' I get the message 'Error occurred when creating relationship for user ESSUSER-B to employee'.
    Please create the appropriate assignment manually in HR master data.
    But I have assigned it manualy in IT 0105.
    Concurrent employment (CCURE PAUIX) is not activated.

  • CONCSUB user does not exist

    Could anybody explain me what CONCSUB schema is used for ? When I stop all services on apps tier I receive the message "CONCSUB failed due to ORA-01017: invalid username/password; login denied". However this user does not exist in the database.
    Could anybody explain me this situation?
    thanks,
    D.

    ORA-01017: invalid username/password
    adcmctl.shAre you able to connect to SQL*Plus as apps/<apps password>?
    Would you please try the following:
    - Login as applmgr user
    - Run "adcmctl.sh stop apps/<apps password>"
    - Issue " ps -ef | grep -i FND"
    - Make sure the ps command returns no entries
    - Run "adcmctl.sh start apps/<apps password>"
    - Run "adcmctl.sh stop apps/<apps password>" again, check if you get the same ORA error or not

  • CUA-User does not exist in Child system

    Hi All,
    User has been created in  child system through central system,and respective roles also assigned through central system.Now,the issue is when user is trying to log in child system,it's showing user does not exist.
    I did Text comparison also,status is okay.
    Kindly help!
    Regards,
    Naveen

    Hi,
    Could you just login to the child system and view the userid created through su01?
    1. In case you are unable to do the same, there is certainly a problem  with idoc distribution for which you can find the reasons in SCUL.
    2. In case the userid exists in child syatem, you need to check if address data for the userid is being maintained in child system or not.
    In case you get an error message " Address data not maintained"  while viewing the userid through su01 in the child system, then you need to execute report RSADRCK2 in the child system.
    You may refer to the following link in this case:
    http://help.sap.com/saphelp_sm32/helpdata/en/85/91cd3b11571962e10000000a11402f/frameset.htm

  • Adding to a task list - User does not exist or is not unique

    We have SharePoint 2010 with a single web server front end and another server as the SQL server.  When trying to add a task to a list or an announcement to a page, users are getting the error, "The user does not exist or is not unique."
    I have searched diligently for an answer, but cannot find anything about this with regards to users getting the error. 
    Thank you in advance for your assistance.

    hello,
    i have faced your problem few minutes ago. when i was trying to solve another problem
    --->> (Object Cache: The super user account utilized by the cache is not configured) --> my current problem
    i have found at search results the below PS command to configure super user and super reader.
    $w = Get-SPWebApplication http://webapplicationlink
    $w.Properties["portalsuperuseraccount"] = "domain account"
    $w.Properties["portalsuperreaderaccount"] = "domain account"
    $w.Update()
    but it caused me another problem which you are facing right now.
    ---> ( Error:  The user does not exist or is not unique)
    while adding any item to any list specially lists
    then i have tried to rollback by doing the below PS command and it worked and solved it.
    $w = Get-SPWebApplication http://webapplicationlink
    $w.Properties["portalsuperuseraccount"] = ""
    $w.Properties["portalsuperreaderaccount"] = ""
    $w.Update()
    after that check for the super user and super reader by
    Get-SPWebApplication | %{Write-Host "Web Application: " $_.url "`nSuper user: " $_.properties["portalsuperuseraccount"] "`nSuper reader: " $_.properties["portalsuperreaderaccount"] "`n"}
    This is the output for the above command should be like this.
    Web Application:  http://webapplicationlink
    Super user:
    Super reader:
    hope that it helps :)
    Karim El Zarka,Senior IT Specialist Commercial International Bank, MCTS Sharepoint

  • Account name  "domain/user" does not exist.

    Hi All,
    I am trying to install netweaver developer studio.The installation stops immediately after starting with the eror message Account name  "mydomain/user" does not exist.
    Any clue,where/why it is checking my domain and user in the installation.
    Thanks
    Bikram

    My domain/user account (does not exist) was a little more complicated.
    I'm trying to install it on a work laptop and here is what I have found out, hopefully it will help others.
    The installation process validates the user on the domain.  (once I connected to my work network, things started moving forward).
    Second issue, was the administrative rights for my username.  I had to make sure my user had the rights to install, added that user to the Admin group, and make sure the Admin group wasn't in debug mode.  (In my case, it was in debug mode, a remant of the IT organization reinstalling something for me.)
    Third issue, was two users were suppose to be created to help administer the J2EE server and during the installation process you will be prompted for two passwords.  Please keep in mind, if you are on your work domain and trying to install, the password policy used by the organization are actually upheld.  You must create a password that will be accepted by your company.  (I didn't realize this until I tried to create the same users outside of the installation and I an error message was returned with more of a description that made sense.)
    After all of that, I was able to install SAP Netweaver.  Well, at least it said, "Congratulations" and it completed.  I've yet to be able to access portal.  That is my next bug to tackle.
    Michael lee

  • List View webpart from subsite to Top site shows random error "List Does not exist"

    Hi All,
    We have a list in subsite and we are creating a view for that list which we are showing in one of the top site home page. We have taken care of changing the web and list guid of list view webpart when we added on top site. Its working fine but some time
    shows error "list does not exist" but when we refresh the error goes. Is it known issue or if there is any workaround for this? because we cannot go live with this random error.
    Rohit Pasrija

    try these links:
    http://mroffice365.com/2012/01/sharepoint-display-a-list-or-library-from-subsite-to-the-top-level-site/
    http://sharepoint.stackexchange.com/questions/37140/display-list-or-library-on-another-site-as-webpart

  • Error: SNAP_ADT does not exist in the database - manual check required

    Hello Friends,
    We are  performing an upgrade+migration to HDB using the DMO option(Oracle to HANA).
    We are getting below error in the phase MAIN_SHDCRE/SUBMOD_SHDDBCLONE/DBCLONE!
    Also find the output of SE11 & SE14 attached.
    SE14->
    Please help us with the manual check.
    Regards
    Sury

    Hi Sury,
    In regards to the error below:
    1EETGCLN Error: SNAP_ADT does not exist in the database -> manual check
    required
    1EETGCLN SNAP_ADT
    1EETGCLN Table does not exist
    Could you please try to activate the following tables via SE11?
    -  SNAP_ADT
    Once they are activated, Could you please repeat the phase and update the result?
    Thanks and Regards,
    James Wong
    Follow us:
    SAP System Upgrade & Update Troubleshooting Wiki Space.
    SAP Product Support Twitter  ( Hashtag: #NWUPGRADE)

Maybe you are looking for

  • URGENT HELP: How to reformat an external hard drive?!

    We purchased a Desk Hammer external hard drive with USB. My hubby plugged it into his Mac G4/OS 8.6 and when it was recognized, he selected to format it for Mac only. We needed it to be ISO Whatever so I can use it on my Windows systems too. The Desk

  • Focus vertical scroll bar in report div

    Hi everyone, I just want to know if the issue has been resolved by someone : I have a report within a div and a vertical scrolling bar to scroll the rows. When I click on a row of the report the row is highlighted. Now, if the clicked row is at the e

  • Simple Search Form

    I am having a really annoying problem with my single field search form. When I search for results I want it to load a page with a form with all the fields filled in. I have this method working on another page. The form is on member_search.php and the

  • Query running, and never ends, need guidance

    I am trying to track down 64 Id's that are not in one table and cannot seem to get the query right. I am in need of some guidance if anyone can help I have joined two tables in one query: SELECT line_item.ID   FROM sforce_opportunitylineitem line_ite

  • Editing an Outbound Idoc and resending

    Hello all, I have looked but can't find the answer to my questions. I have an outbound idoc (invoice) - I have used BD87 to edit the idoc.  the idoc is now in a status of 32. How do I resend this idoc? when I hit process I am taken to a screen showin