ORA-02298: cannot validate (PL_REM_FK_ES_EMP) - parent keys not found

hi
I disabled some constraints. But now, when I try to enable them then I get the error:
ORA-02298: cannot validate (PL_REM_FK_ES_EMP) - parent keys not found.
Plz guide me to resolve this problem.

Hi,
there is most likely some orphaned records in the child table. what command did you use to delete the record? what the output of
select xxxxx from child_table a where not exists (select 'x' from
parent_table where primary_key = a.key_values);
dan

Similar Messages

  • ORA-02298: cannot enable name - parent keys not found

    Hi All,
    I got this problem while creating Foreign Key constraints ORA-02298: cannot enable name - parent keys not found. How to rectify this problem

    alter table WORK_APPROVAL_DETAILS
    add constraint FK_WRKAPPR_AUTH_APPR foreign key (APPROVER_CODE, PCC_INFO_CODE)
    references AUTHORIZED_APPROVERS (APPROVER_CODE, PCC_INFO_CODE);
    WORK_APPROVAL_DETAILS:
    inspection_id     number(16)               
    work_code      varchar2(18)               
    approver_code     varchar2(12)               
    approver_remarks     varchar2(200)               
    approval_date     date               
    role_code     char(2)               
    reference_no     varchar2(50)               
    pcc_info_code     varchar2(9)               
    status_code     number(4)
    AUTHORIZED_APPROVERS
    approver_code     varchar2(12)               
    approver_name     varchar2(30)               
    dept_code     varchar2(3)               
    desg_code      char(2)               
    is_active     char(1)               
    address     varchar2(250)               
    role_code     char(2)               
    created_by     varchar2(20)               
    created_date     date               
    pcc_info_code     varchar2(9)               
    qualification     varchar2(50)               
    experience      varchar2(25)

  • How to resolve ORA-02298: cannot validate (%s.%s) - parent keys not found

    Hi, During the exp/imp process,i have tried to enable the constraints once the import done,but for some of the constraints am getting ORA-02298: cannot validate (%s.%s) - parent keys not found error,can anyone assist me what are all the possible ways to fix this issue. database -ORACLE 11g,o/s -LINUX

    Hi. Put the missing values into the parent table or Remove the rows in the child table which contain values that are not in the parent table
    http://www.shutdownabort.com/errors/ORA-02298.php
    Regards
    Javid Hasanov
    Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Edited by: Javid Hesenov on Jul 6, 2012 2:03 AM

  • ORA-02298 : cannot validate - parent keys not

    Hi,
    I am trying to create a FK-PK constraints.
    In the alter table command i am using the caluse:
    exceptions INTO ... in order to catch all the exception rows .
    Can you please explain why i am getting this error message ?
    I am using the following command:
    SQL> ALTER TABLE STARQ.CALL_FACT ADD (
    2 CONSTRAINT CALL_FACT_FK_cmcustdim1
    3 FOREIGN KEY (CUST_ID)
    4 REFERENCES STARQ.CM_CUST_DIM_1 (DWH_CUST_ID)
    5 exceptions INTO starq.exceptions );
    CONSTRAINT CALL_FACT_FK_cmcustdim1
    ERROR at line 2:
    ORA-02298: cannot validate (STARQ.CALL_FACT_FK_CMCUSTDIM1) - parent keys not found

    Hi,
    >>Can you please explain why i am getting this error message ?
    This is a normal behavior. After issued the "alter table add constraint ..." command, you need to query on EXCEPTIONS table.
    LEGATTI@XE> create table a (id number constraint pk_a primary key);
    Table created.
    LEGATTI@XE> create table b (id number);
    Table created.
    LEGATTI@XE> insert into b values (1);
    1 row created.
    LEGATTI@XE> create table exceptions(row_id rowid,
      2                     owner varchar2(30),
      3                     table_name varchar2(30),
      4                     constraint varchar2(30));
    Table created.
    LEGATTI@XE> alter table b add constraint fk_b_a foreign key (id) references a exceptions into exceptions;
    alter table b add constraint fk_b_a foreign key (id) references a exceptions into exceptions
    ERROR at line 1:
    ORA-02298: cannot validate (LEGATTI.FK_B_A) - parent keys not found
    LEGATTI@XE> select * from exceptions;
    ROW_ID             OWNER                          TABLE_NAME                     CONSTRAINT
    AAAD3mAAEAAAABoAAA LEGATTI                        B                              FK_B_ACheers
    Legatti

  • ORA-02298: cannot validate .......

    Hi,
    I exported user cmsadmin with constraints=y and consistent=y as DBA user from 9i then Imported it using fromuser/touser =cmsadmin into oracle 10g..
    i got the follwing error while importing:
    IMP-00017: following statement failed with ORACLE error 2298:
    "ALTER TABLE "RESPONSES" ENABLE CONSTRAINT "FK_RESPONSE_FK_CTF_RE_CERTIFIC""
    IMP-00003: ORACLE error 2298 encountered
    ORA-02298: cannot validate (CMSADMIN.FK_RESPONSE_FK_CTF_RE_CERTIFIC) - parent keys not found
    The
    ALTER TABLE "CMSADMIN"."RESPONSES" ADD CONSTRAINT
    "FK_RESPONSE_FK_CTF_RE_CERTIFIC" FOREIGN KEY ("REP_CERTIFICATION_ID")
    REFERENCES "CERTIFICATION" ("CTF_CERTIFICATION_ID") ENABLE NOVALIDATE ;
    But when i checked number of rows of for CERTICATION table in 9i DB and target 10g DB they are same....
    But when i run the following query:
    select distinct REP_CERTIFICATION_ID from RESPONSES a where not exists (select CTF_CERTIFICATION_ID from CERTIFICATION where CTF_CERTIFICATION_ID = a.REP_CERTIFICATION_ID);The above query returns 288 rows meaning they are not in CERTIFICATION table.. but the count of number of rows are same in source and target DB..
    What can be the reason..
    can you pls help...
    Thx

    Hi,
    here is my EXP and IMP commands:
    exp cmsadmin/frora04_adm file=cmsdbt01_cmsadmin_29Mar07.dmp log=cmsdbt01_cmsadmin_29Mar07.log owner=cmsadmin consistent=y grants=y constraints=y rows=n
    imp cmsadmin/orad1_adm file=cmsdbt01_cmsadmin_29Mar07.dmp log=cmsadmin_imp.log fromuser=cmsadmin touser=cmsadmin ignore=y
    moreover, when i run the following query in source database on 9i from where i took the export it does not return any rows meaning that data is fine in both parent and child tables:
    select distinct REP_CERTIFICATION_ID from RESPONSES a where not exists (select CTF_CERTIFICATION_ID from CERTIFICATION where CTF_CERTIFICATION_ID = a.REP_CERTIFICATION_ID);
    But, when i run the same above query in target table after importing the schema (usng above imp command) i get 14 distinct CTF_CERTIFICATION_ID meaning that they are not in parent table..
    Master Table --> CERTIFICATION
    PK column --> CTF_CERTIFICATION_ID
    Child Table --> RESPONSES
    FK column to above PK --> REP_CERTIFICATION_ID
    Hence issue still persists reg. parent key not found after importing..
    Thx

  • How to resolve ora issue-parent key not found!

    Hi,
    Once the import is done,when i tried to enable the constraints,am getting ORA-02298: cannot validate (%s.%s) - parent keys not found for some of the constraints,i had already raised a new thread,but when i tried to resolve this issue based on the solution provided there,i couldn't....
    http://www.shutdownabort.com/errors/ORA-02298.php
    i have tried in so many ways-
    -reimporting the parent table alone.
    -fresh export of all tables with option consistent=y
    but the records are matching between source and target tables.

    based on this issue,is there any simple query to findout the missing records in parent table,i don't have access for child_table,parent_table views.
    FYI- am using traditional imp/exp command to accomplish data import and export activities,i tried with the following query,but not getting any output
    select 'select '||cc.column_name-
    ||' from '||c.owner||'.'||c.table_name-
    ||' a where not exists (select ''x'' from '-
    ||r.owner||'.'||r.table_name-
    ||' where '||rc.column_name||' = a.'||cc.column_name||')'
    from dba_constraints c,
    dba_constraints r,
    dba_cons_columns cc,
    dba_cons_columns rc
    where c.constraint_type = 'R'
    and c.owner not in ('SYS','SYSTEM')
    and c.r_owner = r.owner
    and c.owner = cc.owner
    and r.owner = rc.owner
    and c.constraint_name = cc.constraint_name
    and r.constraint_name = rc.constraint_name
    and c.r_constraint_name = r.constraint_name
    and cc.position = rc.position
    and c.owner = '&table_owner'
    and c.table_name = '&table_name'
    and c.constraint_name = '&constraint_name'
    can anyone suggest to fix it using some other option.

  • ORA-28374: typed master key not found in wallet (no ORACLE.SECURITY.TS.ENCR

    Good afternoon! I have a problem with creating a wallet for TDE.
    Oracle Version 11.2.0.2.0.
    SQLNET.ORA is :
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    ADR_BASE = /app/oracle
    # TO SWITCH OFF ORACLE ADR FEATURE
    # DIAG_ADR_ENABLED=off
    DIAG_SIGHANDLER_ENABLED=FALSE
    DIAG_RESTRICTED=TRUE
    TRACE_LEVEL_SERVER=admin
    TRACE_LEVEL_CLIENT=admin
    TRACE_DIRECTORY_SERVER=/app/oracle/product/11.2.0/db_1/network/log
    TRACE_DIRECTORY_CLIENT=/app/oracle/product/11.2.0/db_1/network/log
    TRACE_FILE_CLIENT=cli
    TRACE_FILE_SERVER=srv
    TRACE_UNIQUE_CLIENT=off
    SQLNET.EXPIRE_TIME = 10
    SQLNET.INBOUND_CONNECT_TIMEOUT = 20
    SQLNET.ENCRYPTION_SERVER = REQUESTED
    SQLNET.ENCRYPTION_CLIENT = REQUESTED
    SQLNET.CRYPTO_SEED = 'KakdlkLAKMXM0000sdsdsadadeffdmsdmdkmdv'
    SQLNET.ENCRYPTION_TYPES_SERVER= (AES256,RC4_256,3DES112,DES)
    SQLNET.CRYPTO_CHECKSUM_SERVER = REQUESTED
    SQLNET.CRYPTO_CHECKSUM_TYPES_SERVER = (SHA1,MD5)
    ENCRYPTION_WALLET_LOCATION =
    (SOURCE=
    (METHOD=file)
    (METHOD_DATA=
    (DIRECTORY=/app/oracle/admin/orcl/wallet)
    I've creted wallet by command :
    alter system set encryption key identified by "sdsdsdsds";
    After that i can close and reopen this wallet , it's ok. But i can't create crypted tablaspace :
    CREATE TABLESPACE RMD DATAFILE '/oradata/orcl/TDE.dbf' SIZE 600M
    AUTOEXTEND ON NEXT 100M MAXSIZE 2000M
    EXTENT MANAGEMENT LOCAL UNIFORM SIZE 64K ENCRYPTION USING 'AES256' DEFAULT STORAGE (ENCRYPT);
    i've got an error ORA-28374: typed master key not found in wallet
    My wallet looks like :
    Requested Certificates:
    Subject: CN=oracle
    User Certificates:
    Oracle Secret Store entries:
    ORACLE.SECURITY.DB.ENCRYPTION.ASSSDSeFDX08Evy6Mco2yhXsAsdsdsdsdsdefdfdfdfddfddfdfdfAAAA
    ORACLE.SECURITY.DB.ENCRYPTION.MASTERKEY
    Trusted Certificates:
    As i uderstood there should be also entry like ORACLE.SECURITY.TS.ENCRYPTION. But why this didn't created into wallet by command : alter system set encryption key identified by "sdsdsdsds" ?
    Thanks!
    Edited by: user5819915 on 13-Jan-2012 03:25

    Hi there,
    first, "SQLNET.CRYPTO_SEED = 'KakdlkLAKMXM0000sdsdsadadeffdmsdmdkmdv" is no longer needed, the DB creates a seed itself and ignores this string.
    Then, on to TDE ...: These things happen if you had a wallet before, and that wallet was deleted; now if you create a new wallet, the TS MK is missing. Looks like you didn't encrypt any data yet. You might see if you get https://updates.oracle.com/download/8682102.html for your DB version; apply the patch, decrypt all data, cycle through all log files and then create a new wallet. That might work, but I can't promise.
    Peter

  • Tecra M9 - TPSMain.exe cannot start because CpePerf.dll not found

    Hi and help,
    have searched the web and found other forum threads with similar issues.
    Tried all the suggestions to no avail. I am not great on the computer but can find my way around. Anyway....
    After login messge following messages pop up in succession, along the lines of : TPSMain.exe cannot start because CpePerf.dll not found then: TPSoddctl.exe cannot start because CpuPerf.dll not found
    Computer works fine but Power Saver does not auto start and neither can i select it to from control panel.."toshiba power saver is not running",
    so select it from Power options..."failed to start as CpuPerf.dll is not running"
    Did all the searching on net and followed all advice... i.e. unistall power saver in safe mode, unistall toshiba common utilities neither can unistall fatal error 0x7e
    So download Ccleaner, run checks, unistall with Ccleaner same fatal error.
    Been on Toshiba support and tried to install Power Saver......same problem won't install .
    So help help help if possible.
    Computer is working fine but messages popping up are annoying and i would love power saver to prolong battery.
    Tried system restore, though i doubt this affects the files...another problem "system restore could not complete"...tried this several times and cannot system restore either....what is going on???????
    any help please
    Tim

    Cheers for the advice Andrei,
    so you suggest there is nothing i can do other than restore from Toshiba recovery disc. Do you think somebody with a bit more knowledge could do sort it out with a less drastic approach..i.e is it worth taking it into a shop? Or do you think they will just have to go down the same route?
    If i follow your plan is it just a simple case of downloading all my docs, photos, bookmarks to an external hd and then inserting the recovery disc and following intructions.?? I guess this disc then formats the HD and then reinstalls all the components the laptop came with??? is it infact a drastic approach, or quite simple as a procedure...what do i stand to looose?
    Also how do i save xp as this is a version i installed when working/ using my laptop for my previous employer and i no longer have access to the discs/product key.
    also could you confirm if this procedure would sort out system restore. I have tried restoring again to several restore points and the procedure will not complete, so this function is definitely not working anymore.
    Sorry for more questions but as you can see this is not familair territory for me!!
    many many thanks
    Tim

  • Private Key Not Found Error in Ldaps

    Hi,
    I am facing "Private Key Not Found" Error in ldaps. The key and the SSL certificate is stored under the same location. The certificate is self signed certificate and in .pem format. When I am trying to install the certifcate through SUN ONE Console it throws the following error
    "Either this certificate is for another server, or this certificate was not requested using this server".
    can any one help me in this regard.
    Regards
    Senthil
    Edited by: senlog80 on Dec 30, 2008 3:18 AM

    Or even better, check the note <a href="https://websmp110.sap-ag.de/~form/handler?_APP=01100107900000000342&_EVENT=REDIR&_NNUM=924320&_NLANG=E">924320</a>.
    <b>Symptom</b>:
    When you execute a query with virtual characteristics or key figures, the system issues the following error message:
    Object FIELD I_S_DATA-<key figure> not found
    <b>Other terms</b>
    RSR00002, RSR_OLAP_BADI
    <b>Reason and Prerequisites</b>
    This problem is caused by a program error.
    <b>Solution</b>
    If the virtual characteristics or key figures are implemented using the enhancement RSR00002 (CMOD), implement the corrections.
    If the virtual characteristics or key figures were created directly as implementations of the RSR_OLAP_BADI BAdI, compare the source code of the INITIALIZE method with the corresponding source code example. During the call of GET_FIELD_POSITIION_D, <L_S_SK>-VALUE_RETURNNM must be transferred instead of <L_S_SFK>-KYFNM.
    Import Support Package 08 for SAP NetWeaver 2004s BI (BI Patch 08 or SAPKW70008) into your BI system. The Support Package is available when Note 0872280"SAPBINews BI 7.0 Support Package 08", which describes this Support Package in more detail, is released for customers.
    In urgent cases, you can use the correction instructions.
    To provide advance information, the note mentioned above may be available before the Support Package is released. In this case, the short text of the note still contains the words "Preliminary version".
    Assign pts if helpful.

  • SFTP Issue in OSB invocation resulted in an error: com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,ip

    I created a Proxy Service to do pull file and push it to sftp server
    known_hosts file is present on OSB server.
    It has abcserverhostname,IP ssh-rsa AA................. ==
    I created a business service to do SFTP push to sftp server (remote) - Its not working.
    <Error> <SFTPTransport> <BEA-381826> <Key Not Found for host hostname,10.124....>
    com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,10.124.....
      at com.bea.wli.sb.transports.sftp.client.KnownHostVerifier.onUnknownHost(KnownHostVerifier.java:37)
    My Business Service
    End Point URI : sftp://sftpserverhostname:22/directorypath
    Authetication Mode : user name, password.I have created a Service Account for sftpserver and imported in Business Service.
    Do I need to give anything else in known_hosts file ?
    and hostname can be any random name?
    <Dec 11, 2013 1:45:37 PM GMT+08:00> <Error> <SFTPTransport> <BEA-381801> <Error occured for endpoint com.bea.wli.sb.transports.TransportException: com.maverick.ssh.SshException: ssh-dss Key Not Found for host hostname,10.124....
    com.bea.wli.sb.transports.TransportException: com.maverick.ssh.SshException: ssh-dss Key Not Found for host
      at com.bea.wli.sb.transports.sftp.connector.SFTPTransportProvider.sendMessage(SFTPTransportProvider.java:161)
      at com.bea.wli.sb.transports.sftp.connector.SFTPTransportProvider.sendMessageAsync(SFTPTransportProvider.java:111)
      at sun.reflect.GeneratedMethodAccessor566.invoke(Unknown Source)
      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
      at java.lang.reflect.Method.invoke(Method.java:597)
      Truncated. see log file for complete stacktrace
    Caused By: com.maverick.ssh.SshException: ssh-dss Key Not Found for host eirnode2,10.124.10.16
      at com.bea.wli.sb.transports.sftp.client.KnownHostVerifier.onUnknownHost(KnownHostVerifier.java:37)
      at com.sshtools.publickey.AbstractKnownHostsKeyVerification.A(Unknown Source)
      at com.sshtools.publickey.AbstractKnownHostsKeyVerification.verifyHost(Unknown Source)
      at com.maverick.ssh2.TransportProtocol.C(Unknown Source)
      at com.maverick.ssh2.TransportProtocol.processMessage(Unknown Source)
      Truncated. see log file for complete stacktrace

    BEA-381826 suggest that there is any issue with your public key in known_host file, can you cross verify it again. Also can you check if known_host file has appropriate permissions and I am assuming it is in /OSB_DOMAIN/osb/transports/sftp folder.
    Hostname,IP algorithm publickey are the hostname, ip, and public key of SFTP server.
    As per troubleshooting guidelines
    The Key not found for IP, host error message indicates that the known_hosts file does not contain an entry that corresponds to the specified IP-host combination. If the entry exists, then try with another algorithm key; for example, if the earlier attempt was with an RSA key, try again with a DSA key.
    Cheers,
    Sahil

  • Datasource: ORA-02019: connection description for remote database not found

    Hi,
    I recently made the datasource to point to a new host, and using the EM console tested the connectivity to the datasource to be successful.
    Java code that refers to the DS is also the same as before that was working as only the connection string has been changed, but now trying to access the web-application shows the following error in the logs:
    ==============
    Exception::java.sql.SQLException: ORA-02019: connection description for remote database not found
    oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:138)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:316)
    oracle.jdbc.driver.T4CTTIoer.processError(T4CTTIoer.java:282)
    oracle.jdbc.driver.T4C8Oall.receive(T4C8Oall.java:639)
    oracle.jdbc.driver.T4CStatement.doOall8(T4CStatement.java:113)
    oracle.jdbc.driver.T4CStatement.execute_for_describe(T4CStatement.java:431)
    oracle.jdbc.driver.OracleStatement.execute_maybe_describe(OracleStatement.java:1029)
    oracle.jdbc.driver.T4CStatement.execute_maybe_describe(T4CStatement.java:463)
    oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1126)
    oracle.jdbc.driver.OracleStatement.executeQuery(OracleStatement.java:1274)
    oracle_jdbc_driver_T4CStatement_Proxy.executeQuery()=====================================
    What could be the reason? Is there any other app server datasource related setting that needs to be done or is it some other issue - as I said 'testing the connection from EM console connects successfully'.
    Thanks,
    Rommel.

    The issue is resolved now.
    One of the queries used a db link that was missing on the new database and therefore the error from the java code.
    Since testing for connectivity using DS through EM console does not check for any db link (using the default query it executes) connectivity was successful.
    Thank a lot,
    Rommel.

  • ORA-0209:Connection discription for remote database not found

    Please help me with this oracle error.
    I have create a DB link to connect to the Oracle database from a remote Oracle DB. I am able to query the select statement through DBLINK and i also created the Synonym for the same. But still iget the below error in the DB package when i am inserting one row into the same table for which i created a synonym with the DBLINK
    ORA-0209:Connection discription for remote database not found
    ORA-02063:preceding line from DBLINK
    Please help me if anyone can give me a appropriate answer.
    Thanks in advance for all those who try to help me

    Sorry for the Typo mistake ..
    The ORA error code is not ORA-0209 but it is ORA-02019

  • Error "Specifed Key not found" while installing Oracle 11g R2 db

    Hi,
    I am new to installing oracle 11gr2 DB. While installing at the stage of "install product" during the process of .Copy files its throwing the following error
    *Specified Key not found
    Please help me solving this problem. Your help is much appreciated.
    Thanks in advance.

    979400 wrote:
    Hi ..
    I am getting the "Specified Key not found" while installing Oracle 11 g r2 on windows 8 (64 bit) and below is the installation log , Please help me .
    Number one - you are hijacking someone else's thread. Please read the forum FAQ. The link to that is conveniently located in the upper right corner of this very page.
    Number two - no oracle product is certified to run on Window 8. If you want to run an Oracle product, you need to use an OS which Oracle has certified for said product.
    ID: oracle.install.driver.oui.OUISetupDriver:13
    oracle.cluster.verification.PreReqNotSupportedException: Reference data is not available for verifying prerequisites on this operating system distribution
         at oracle.cluster.verification.constraints.XmlTaskFactory.getTasks(XmlTaskFactory.java:248)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4538)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4487)
         at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
         at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
         at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
         at oracle.install.ivw.db.driver.DBSetupDriver.load(DBSetupDriver.java:161)
         at oracle.install.commons.base.driver.common.Installer.run(Installer.java:216)
         at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:129)
         at oracle.install.commons.util.Application.startup(Application.java:869)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
         at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
         at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:117)
         at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:148)
    ---# End Stacktrace #-----------------------------
    ---# Begin Stacktrace #---------------------------
    ID: oracle.install.commons.util.exception.DefaultErrorAdvisor:16
    oracle.cluster.verification.PreReqNotSupportedException: Reference data is not available for verifying prerequisites on this operating system distribution
         at oracle.cluster.verification.constraints.XmlTaskFactory.getTasks(XmlTaskFactory.java:248)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4538)
         at oracle.ops.verification.framework.util.VerificationUtil.isPreReqSupported(VerificationUtil.java:4487)
         at oracle.cluster.verification.ClusterVerification.isPreReqSupported(ClusterVerification.java:6382)
         at oracle.install.driver.oui.OUISetupDriver.verifyEnvironment(OUISetupDriver.java:299)
         at oracle.install.driver.oui.OUISetupDriver.load(OUISetupDriver.java:422)
         at oracle.install.ivw.db.driver.DBSetupDriver.load(DBSetupDriver.java:161)
         at oracle.install.commons.base.driver.common.Installer.run(Installer.java:216)
         at oracle.install.ivw.db.driver.DBInstaller.run(DBInstaller.java:129)
         at oracle.install.commons.util.Application.startup(Application.java:869)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:164)
         at oracle.install.commons.flow.FlowApplication.startup(FlowApplication.java:181)
         at oracle.install.commons.base.driver.common.Installer.startup(Installer.java:265)
         at oracle.install.ivw.db.driver.DBInstaller.startup(DBInstaller.java:117)
         at oracle.install.ivw.db.driver.DBInstaller.main(DBInstaller.java:148)
    ---# End Stacktrace #-----------------------------

  • Cannot join tables .item dependency not found in EUL

    cannot join tables.item dependency "a04 currency->b27 exchange rate 1" not found in EUL
    I am not able to open a workbook in discoverer in user edition.
    It seems I unwittingly deleted a join in the end user layer. I have tried to redo the join but I have not been able to replicate the join required. Is there any way I can work around this join without having to scrap my workbook? Rebuilding the workbook took a long time.
    Any suggestions would dig me out of a deep hole

    Hey,
    I got this Error after our environment was cloned from APPS Production (PRD) instance to Development (DEV). I saved my workbooks that were 'under construction' as *.DIS files as local copies to the network.
    After the clone was finished I imported the latest Business Areas back onto DEV, but there was no way I could open my saved local workbooks due to the error "cannot join tables .item dependency not found in EUL".
    After some hours of rage, by accident we found out that one of our Functional Consultants was able to open these workbooks! It turned out that when I logged on to APPS under the user_name (from FND_USER) of this person I could indeed open the workbooks and save them to the database after which I could open them again with my own user.
    So -in this case- I solved the problem by using a different user to open the workbooks. But who knows next time...
    Good luck, you'll need it.

  • SSAS Cube - Throws "attribute key not found" when the key exists

    Hi,
    I created a cube with 2 fact tables ( CabecNF and ItensNF ) and with some dimensions, in this case Cliente.
    When I proccess the cube it throws this error:
    Internal error: The operation terminated unsuccessfully.
    Errors in the OLAP storage engine: The process operation ended because the number of errors encountered during processing reached the defined limit of allowable errors for the operation.
    Errors in the OLAP storage engine: An error occurred while processing the 'ITENSNF' partition of the 'ITENSNF' measure group for the 'SCA' cube from the SCA_Cube_ database.
    Errors in the OLAP storage engine: The process operation ended because the number of errors encountered during processing reached the defined limit of allowable errors for the operation.
    Server: The operation has been cancelled.
    Errors in the OLAP storage engine: An error occurred while processing the 'CABECNF' partition of the 'CABECNF' measure group for the 'SCA' cube from the SCA_Cube_ database.
    Errors in the OLAP storage engine: The attribute key cannot be found when processing: Table: 'dbo_CLIENTE', Column: 'CODIGO', Value: '6571'. The attribute is 'CLIENTEID'.
    Errors in the OLAP storage engine: The attribute key was converted to an unknown member because the attribute key was not found. Attribute CLIENTEID of Dimension: CLIENTE from Database: SCA_Cube_, Cube: SCA, Measure Group: ITENSNF, Partition: ITENSNF, Record: 152957.
    I understand that is not finding the ClienteID 6571. But I've checked on my database and he exists, and he has itens in the CabecNF wich has itens on ItensNF.
    I've already customized the error configuration on the dimensions, but it didn't solve the problem.
    What could be causing this behavior?
    Thanks.
     

    i did nt get what are trying say by this:
    "First the Cliente dimension reported 500 rows skipped due to having the same name(even the name not being a key), so I changed the dimension and set the "name" property as not aggregable. Re-processed the dimension, and this time no skipped rows"
    1.) were u able to do a full process of the dimension successfully?
    if yes can you go and check the view or data source query that is making this dimension  have the value for the column 'CODIGO' 6571
    Yes, the process of the dimension was successful. At first successful with warnings, and then successful without warnings.
    But I found the problem: The Cliente dimension has relathionship with the Seguimento dimension, and the Cliente 6571 had NULL at that relationship. I fixed that and the cube was processed successfully.
    It was a bit hard to find the problem because the error didn't mentioned anything about the Seguimento dimension.
    Thanks for all your help guys!

Maybe you are looking for

  • Character Limit to Custom Calculation Script?

    Hi. I have a document that has a text form field. I want to run a custom calculation script that basically says if field "Group Number" = xxxxxxx, then field "Group Name" should = ABC Company. I have a list of almost 575 group numbers and names that

  • No color management in Photoshop plugin!?

    Today, I finally started playing with PixelBender in order to make some Photoshop filters for color and tonal corrections. Unfortunately, I seem to have hit a snag. Unlike any of the other filters, the preview window of the PixelBender plugin is not

  • Read a text file

    I have a text file such that 0 jones 1 0 helen 2 1 cat 3 1 dog 4 1 cow 5 2 snake 6 2 ant 7 if I press 2 (this 2 belongs to helen) I should have snake and ant please help me it is so important

  • Psd turn into JPEG prewiews after save for web. Help!

    save for web>save>save optimised as>save>close. That gives me a jpeg (the previous was a psd), but in the form of a preview thumbnail, top right corner bent, loupe and "JPEG" on it. I did about 20 psd just fine,ending in the folder as jpg images, kee

  • Is it possible to post docs to Dummy profit center

    Hi friends, Is it possible to post FI docs to dummy profit center. Posting for customer document. Customer Dr Bank Account Cr. system is not allowing to post document with dummy profit center. If I post document without any proft center, It is giving