Update on Oracle-Realserver streaming

Hello Larry,
Thank you very much for hints.
Sorry for re-posting my recent reply, but it seems that it was hard to find it when it's so much down the thread.
I guess I figured out how to use the ldd command.
Here's what it gives:
libclntsh.so.9.0 => not found
libpthread.so.0 => /lib/libpthread.so.0 (0x40044000)
libstdc++-libc6.3-2.so.3 => not found
libm.so.6 => /lib/libm.so.6 (0x4005a000)
libc.so.6 => /lib/libc.so.6 (0x4007e000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x80000000)
How do you fix those "not found" things?
Also I checked in rmerror.log and here are some of the major messages:
***26-Sep-03 23:06:47.510 rmserver(17709): /data/realserver/Plugins/liborclfs.so
Not a valid library
***26-Sep-03 23:06:47.630 rmserver(17719): A configuration was found for broadca
st distribution, but this server is not licensed for broadcast distribution.
***26-Sep-03 23:06:48.210 logplin(17718): WindowsMediaMulticast: This Server is
not licenced to Multicast the WindowsMedia data types.
26-Sep-03 23:06:52.510 logplin(17718): Helix Server (c) 1995-2002 RealNetworks,
Inc. All rights reserved.
26-Sep-03 23:06:52.510 logplin(17718): Version: Helix Server 9.0 (9.0.2.802)
26-Sep-03 23:06:52.510 logplin(17718): Platform: linux-2.2-libc6-i586-server
***26-Sep-03 23:07:19.610 logplin(17718): 2: Error retrieving URL `videodb/1' (Invalid path)
So, yes, there is a "Not a valid library" message. As I read in "Readme" for Oracle plugin, "if "/private1/real8/Plugins/liborclfs.so.6 Not a valid library, then check the LD_LIBRARY_PATH variable. It must contain the directory for the Oracle client library".
However, I'm running Helix Server on the same PC as Oracle 9i (both under Suse 8.0 Linux) and I don't have any Oracle client installed for Linux (I was trying to find one for Linux, but couldn't - do you know where to get it?)
So, I've set the "LD_LIBRARY_PATH" in the following way ("setenv LD_LIBRARY_PATH ${ORACLE_HOME}/lib:${LD_LIBRARY_PATH}" doesn't work):
export LD_LIBRARY_PATH=/home/oracle_user/OraHome/lib/
However, it still gives a "file not found message.
Any ideas? I would appreciate any help on the issue.
Thanks a lot,
Roman

Looks like you need to upgrade the linux installation you have.... It must include libstdc++--lib6.3-2.so.3
What distibution/version do you have?
according to the readme requirements:...
Windows Windows NT 4.0 Windows NT 4.0 Windows NT 4.0 Windows 2000 Windows 2000 Windows 2000 Windows XP Professional Solaris Solaris 2.6 (5.6) Solaris 2.6 (5.6) Solaris 2.6 (5.6) Solaris 8 (5.8) Solaris 8 (5.8) Linux Red Hat Linux 8.0 libstdc++--lib6.3-2.so.3                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Using OWB mappings with Oracle CDC/Streams and LCRs

    Hi,
    Has anyone worked with Oracle Streams and OWB? We're looking to leverage Streams to update our data warehouse using Streams to apply changes from the transactional/source DB. At some point we seem to remember hearing that OWB could leverage Streams, perhaps even using the Logical Change Records (LCRs) from Streams as input to mappings?
    Any thoughts much appreciated.
    Thanks,
    Jim Carter

    Hi Jim,
    We've built a fairly complex solution based on streams. We wanted to break up the various components into separate entities so that any network failure or individual component failure wouldn't cause issues for the other components. So, here goes:
    1) The OLTP source database is streaming LCR's to our Datawarehouse where we keep an operational copy of production, updated daily from those streams. This allows for various operational reports to be run/rerun in a given day with the end-of-yesterday picture without impacting the performance on the source system.
    2) Our apply process on the datamart side actually updates TWO copies of data. It does a default apply to our operational copy of production, and each of those tables have triggers that put a second copy of the data into daily partitioned tables. So, yesterday's partitions has only the data that was actually changed yesterday. After the default apply, we walk the Oracle dependency tree to fill in all of the supporting information so that yesterday's partition includes all the data needed to run our ETL queries for that day.
    Example: Suppose yesterday an address for a customer was updated. Streams only knows about the change to the address record, so the automated process would only put that address record into the daily partition. The dependency walk fills in the associated customer, date of birth, etc. data into that partition so that the partition holds all of the related data to that address record for updates without having to query against the complete tables. By the same token, a change to some other customer info will backfill in the adress record for this customer too.
    Now, our ETL queries run against views created against these partitoned tables so that they are only looking at the data for that day (the view s_address joins from our control tables to the partitiond address table so that we are only seeing one day's address records). This means that the ETL is running agains the minimal subset of data required to update dimensions and create facts. It also means that, for example, if there is a problem with the ETL we can suspend running ETL while we fix a problem, and the streaming process will just go on filling partitions until we are ready to re-launch ETL and catch up - one day at a time. We also back up the data mart after each load so that, if we discover an error in ETL logic and need to rebuild we can restore the datamart to a given day and then reprocess the daily partitions in order very simply.
    We have added control fields in those partitioned tables that show which record was inserted/updated/or deleted in production, and which was added by the dependency walk so, if neccessary, our ETL can determine which data elements were the ones that changed. As we do daily updates to the data mart as our finest grain, this process may update a given record in a given partition multiple times so that the status of this record at the end of the day in that daily partition shows the final version of that record for the day. So, for example, if you add an address record an then update it on the same day the partition for that day will show the final updated version of the record, and the control field will show this to be a new inserted record for the day.
    This satisfies our business requirements. Yours may be different.
    We have a set of control tables which manage what partition is being loaded from streams, and which have been loaded via ETL to the datamart. The only limitation is that, of course, the ETL load can only go as far as the last partition completely loaded and closed from streams. And we manage the sizing of this staging system by pruning partitions.
    Now, this process IS complex, and requires a fair chunk of storage, but it provides us with the local daily static copy of the OLTP system for running operational reports against without impacting production, and a guaranteed minimal subset of the OLTP system for speedy ETL runs.
    As for referencing LCRs themselves, we did not go that route due to the dependency issues (one single LTR will almost never include all of the dependant data from which to update a dimension record or build a fact record, so we would have had to constantly link each one with the full data set to get all of that other info).
    Anyway - just thought our approach might give you some ideas as you work out your own approach.
    Cheers,
    Mike

  • Jython error while updating a oracle table based on file count

    Hi,
    i have jython procedure for counting counting records in a flat file
    Here is the code(took from odiexperts) modified and am getting errors, somebody take a look and let me know what is the sql exception in this code
    COMMAND on target: Jython
    Command on source : Oracle --and specified the logical schema
    Without connecting to the database using the jdbc connection i can see the output successfully, but i want to update the oracle table with count. any help is greatly appreciated
    ---------------------------------Error-----------------------------
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 45, in ?
    java.sql.SQLException: ORA-00936: missing expression
    ---------------------------------------Code--------------------------------------------------
    import java.sql.Connection
    import java.sql.Statement
    import java.sql.DriverManager
    import java.sql.ResultSet
    import java.sql.ResultSetMetaData
    import os
    import string
    import java.sql as sql
    import java.lang as lang
    import re
    filesrc = open('c:\mm\xyz.csv','r')
    first=filesrc.readline()
    lines = 0
    while first:
    #get the no of lines in the file
    lines += 1
    first=filesrc.readline()
    #print lines
    ## THE ABOVE PART OF THE PROGRAM IS TO COUNT THE NUMBER OF LINES
    ## AND STORE IT INTO THE VARIABLE `LINES `
    def intWithCommas(x):
    if type(x) not in [type(0), type(0L)]:
    raise TypeError("Parameter must be an integer.")
    if x < 0:
    return '-' + intWithCommas(-x)
    result = ''
    while x >= 1000:
    x, r = divmod(x, 1000)
    result = ",%03d%s" % (r, result)
    return "%d%s" % (x, result)
    ## THE ABOVE PROGRAM IS TO DISPLAY THE NUMBERS
    sourceConnection = odiRef.getJDBCConnection("SRC")
    sqlstring = sourceConnection.createStatement()
    sqlstmt="update tab1 set tot_coll_amt = to_number( "#lines ") where load_audit_key=418507"
    sqlstring.executeQuery(sqlstmt)
    sourceConnection.close()
    s0=' \n\nThe Number of Lines in the File are ->> '
    s1=str(intWithCommas(lines))
    s2=' \n\nand the First Line of the File is ->> '
    filesrc.seek(0)
    s3=str(filesrc.readline())
    final=s0 + s1 + s2 + s3
    filesrc.close()
    raise final

    i changed as you adviced ankit
    am getting the following error now
    org.apache.bsf.BSFException: exception from Jython:
    Traceback (innermost last):
    File "<string>", line 37, in ?
    java.sql.SQLException: ORA-00911: invalid character
    here is the modified code
    sourceConnection = odiRef.getJDBCConnection("SRC")
    sqlstring = sourceConnection.createStatement()
    sqlstmt="update tab1 set tot_coll_amt = to_number('#lines') where load_audit_key=418507;"
    result=sqlstring.executeUpdate(sqlstmt)
    sourceConnection.close()
    Any ideas
    Edited by: Sunny on Dec 3, 2010 1:04 PM

  • Information in the case folder is not getting updated in Oracle Credit Mgt

    Hi,
    I have created an SO and an Invoice for this SO for a particular customer. Now, when I create a credit application and a case folder in OCM for this customer, Fields like Receivables Balance, Credit Exposure, Days Sales Outstanding etc. in the case folder are not getting updated. These fields are not getting updated even after refreshing the case folder. It means that the information from the 'Receivables Responsibility is not getting updated in the case folder.
    I have already run the 'Initialize credit Summaries' concurrent program after creating the Sales Order and Invoice.
    PS: The case folder gets updated only when I set the Profile Option: "AR: Allow summary table refresh" to Yes and then running the "Refresh AR Transactions Summary Tables" concurrent program. But once this program runs the Profile Option again becomes 'No' (Which is a Standard functionality).
    So this is a manual way to update the case folder. My requirement is that the case folder should get updated automatically and no manual intervention should be required.

    Sumit Malik wrote:
    Hi,
    I have created an SO and an Invoice for this SO for a particular customer. Now, when I create a credit application and a case folder in OCM for this customer, Fields like Receivables Balance, Credit Exposure, Days Sales Outstanding etc. in the case folder are not getting updated. These fields are not getting updated even after refreshing the case folder. It means that the information from the 'Receivables Responsibility is not getting updated in the case folder.
    I have already run the 'Initialize credit Summaries' concurrent program after creating the Sales Order and Invoice.
    PS: The case folder gets updated only when I set the Profile Option: "AR: Allow summary table refresh" to Yes and then running the "Refresh AR Transactions Summary Tables" concurrent program. But once this program runs the Profile Option again becomes 'No' (Which is a Standard functionality).
    So this is a manual way to update the case folder. My requirement is that the case folder should get updated automatically and no manual intervention should be required.Duplicate post -- Information in the case folder is not getting updated in Oracle Credit Mgt

  • Exam results not updated on Oracle CertView

    I have passed the following exam :
    1z0-052 - Oracle 11g Administration I
    in October 22 . The exam results are posted in my PearsonVUE account , but not updated in Oracle CertView acount . Only my previous exam ( 1z0-051 , which was in March ) details are there .
    I have contacted ( a web-form ) Oracle Certification Support two days ago and they never responded.
    My OCA certification is processed only after this exam is updated. How to resolve this ?

    user10268116 wrote:
    It is obvious that Oracle would verify candidates attendance in the Instructor Led Training.
    But how many days it takes from Completion of Track Exam and actually receiving certification ?
    I have raised SR : 22787267 for getting OCP Logo as its more than 3 weeks that I have received OCP Success Kit.
    Can some one from the Certification Team provide answer to this as I'm being constantly asked where I work about the actual Certification.
    Can Oracle find a middle way out to such issues as this may be faced with many alike ?
    Much Appreciate Your Time !
    ~S
    Edited by: user10268116 on Nov 16, 2011 2:37 PMThis is somebody else's thread.... the subject is certview ... it is not obvious from this thread you are talking about certview.
    It would probably be better if you are in your own thread.
    Is it that you have access to certview and your certification doesn't show there, or is it that you haven't recieved your certification success kit in the post?
    It you register on http://certview.oracle.com you can publish your certification credrentials via email from Oracle Certview to thrid parties who ask.

  • How can I control updating in Oracle ADF

    I have been using Oracle Forms for many years and am trying to learn Jdeveloper and Oracle ADF. In Oracle Forms, we base all of out blocks on views and control all updating in on-insert, on-update, and on-delete triggers. How can I control updating in Oracle ADF in a similar manner?

    Hi,
    Hope following will helpful
    http://www.pitssamerica.com/files/101102_WP%20FormsToADF.pdf
    http://www.exploreoracle.com/2010/08/24/oracle-application-development-framework-adf-and-oracle-forms-developers/
    http://www.google.lk/url?sa=t&rct=j&q=adf%20sample%20for%20oracle%20form%20developer&source=web&cd=7&ved=0CEAQFjAG&url=http%3A%2F%2Forclsamples.googlecode.com%2Ffiles%2FThe%2520Challenges%2520Oracle%2520forms%2520Migration%2520to%2520ADF.pdf&ei=0FzWToaUI4_JrQe0oommDg&usg=AFQjCNEdpho2uVqhSCEugw1svza6zc9iSg&cad=rja

  • Oracle/realserver plugin

    Hi,
    I'm working with the oracle/realserver plugin and all works fine. Like it says in the installion file, i've added the following line to a mountpoint:
    select t.source.getContent() as data,
    t.source.getMimeType() as mimetype,
    from tracks t
    where t.id = %url1%
    No problem so far. Now I've stored the audio tracks as a bfile instead of a blob. I thought it would be sufficient to change the first line in:
    select t.source.getBFile() as data
    However, this doesn't work.
    Does anyone know if the plugin supports bfiles and if yes, how to implement it?
    Thanks in advance,
    Peter

    Peter,
    What are the reasons you're trying to use BFILEs instead of BLOBs? I thiks BLOBs have more advantages than BFILEs. Last ones are not portable between different OS and it's always difficult to maintain consistency (especially non-transactional) between database internal objects and any external storage. BTW, I finaly got my Oracle plugin 8.1.7 loaded by RealServer8 on Solaris7.
    All the best
    Eugene
    null

  • Real time update in Oracle Table

    Hi Friends,
    I have a new requirement (challenging) and i need your inputs to proceed further.
    User is expecting an real time update in Oracle Table.
    Example:
    I have an Oracle (10g) table DDSX-CALENDAR table. whenever a record(new) gets inserted into this table, i need to take this record and update the other oracle table (10g) existing in a different environment (schema and server).
    Please let me your inputs about handling this requirement.
    Thanks for your time.
    Regards,
    Diwakar Dayalan

    Thanks Prasath.
    I beleive for setting up the DBlink the user needs to have DBA role.
    How do we know the data has been inserted into the source, do i need to use a trigger for that ?
    In which way i can use the DB link inside a trigger to update the values in the target table.
    Example
    My source tables is
    DDSX_STR_BANK
    Store Number Bank Name Bank Account Number
    0001 BOA 111111111111 (assume previous value is 222222222222 )
    0002 BOA 222222222222 (assume previous value is 111111111111).
    Now two store numbers have got its bank account number updated in the source and the value is inserted, Now my requirement is once the value is inserted in the source, i need to update bank account number in SSDX_STR_BANK table in a different server and schema.
    SSDX_STR_BANK
    Store Number Bank Account Number
    0001 222222222222
    0002 111111111111
    Update the bank account numbers in Sync with the DDSX_STR_BANK.
    Please guide me how to proceed with this requirement.
    Thanks,
    Divakar

  • How to update for oracle Release 10.2.0.1 to 10.2.0.3

    Hi,
    Can anybody give me hint how can i update my oracle version 10.2.0.1 to version 10.2.0.3.
    I have installed oracle 10gR2 with following:
    SQL> select * from v$version;
    Oracle Database 10g Enterprise Edition Release 10.2.0.1.0 - Prod
    PL/SQL Release 10.2.0.1.0 - Production
    CORE     10.2.0.1.0     Production
    TNS for 32-bit Windows: Version 10.2.0.1.0 - Production
    NLSRTL Version 10.2.0.1.0 - Production
    Now how to update to Release 10.2.0.3 - Prod
    Regards,
    Rushang

    Download it as a patch from Metalink.
    If you have Vista, go to http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10203vista.html
    You will normally follow the upgrade guide that comes with the download. It is simple to follow.

  • [svn:osmf:] 10364: Latest updates to the Dynamic Streaming sample app , and a few bug fixes.

    Revision: 10364
    Author:   [email protected]
    Date:     2009-09-17 14:49:03 -0700 (Thu, 17 Sep 2009)
    Log Message:
    Latest updates to the Dynamic Streaming sample app , and a few bug fixes.
    Modified Paths:
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/.project
        osmf/trunk/apps/samples/framework/DynamicStreamingSample/src/DynamicStreamingSample.mxml
        osmf/trunk/framework/MediaFramework/org/openvideoplayer/composition/ParallelSwitchableTra it.as
    Property Changed:
        osmf/trunk/libs/adobe/NetMocker/
        osmf/trunk/libs/adobe/StrobeUnit/

    Thanks 
    Now we can call and game at the same time
    Life is a train. You can choose your path choice, but you can not choose when the track will end...
    Where will the track take you?
    If my post has answered your question. Please mark it as an answer.

  • Update from Oracle Indentity Manager 9.0.1.0 to 9.0.2.0, Missing XML

    Hi!
    im trying to upgrade my OIM from 9.0.1.0 to 9.0.2.0 using the patches p8484010 and then p13116984, but when im trying to upgrade OIM in my testing VM some errors appear when i try to execute the step *3.2.3 Loading Metadata into the Database* , during the first patch (p8484010) installation, the file in question is the LoadXML.bat.
    it says that several XML's could not be loaded. Are they critical? I have continued the installation and no further errors appear...
    My system specs are:
    Microsoft windows server 2003
    Oracle Database
    and im trying to pass from OIM 9.0.1.0 to 9.0.2.0
    Where goes the console output(errors are in bold):
    C:\patch\9010-9020\db\Metadata>LoadXML.bat jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE UserResourceAccess REP_XML_META ..\Metadata\UserResourceAccess.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm AUD AUD_CLASS com.thortech.xl.audit.userprofileaudit.UserProfileAuditor AUD_METADATA_XML ..\Metadata\UserProfileAuditMetadata.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE ResourceAccessList REP_XML_META ..\Metadata\ResourceAccessList.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE EntitlementSummary REP_XML_META ..\Metadata\EntitlementSummary.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE PolicyList REP_XML_META ..\Metadata\PolicyList.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE GroupMembershipProfile REP_XML_META ..\Metadata\GroupMembershipProfile.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE PolicyDetail REP_XML_META ..\Metadata\PolicyDetail.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE OIMPassExp REP_XML_META ..\Metadata\OIMPassExp.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE ResPassExp REP_XML_META ..\Metadata\ResPassExp.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE GroupMembership REP_XML_META ..\Metadata\GroupMembership.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE ApprovalStatusByApprover REP_XML_META ..\Metadata\ApprovalStatusByApprover.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE UsersCreated REP_XML_META ..\Metadata\UsersCreated.xml
    Failed to load XML. Unable to find record in REP where REP_CODE = UsersCreated_
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm AUD AUD_CLASS com.thortech.xl.audit.groupaudit.GroupAuditor AUD_METADATA_XML ..\Metadata\GroupAuditMetadata.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE ResourceActivity REP_XML_META ..\Metadata\ResourceActivity.xml
    Failed to load XML. Unable to find record in REP where REPCODE = ResourceActivity_*
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE OrganizationStructure REP_XML_META ..\Metadata\OrganizationStructure.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE FinanciallySigResources REP_XML_META ..\Metadata\FinanciallySignificantResources.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE AccountActivityInRes REP_XML_META ..\Metadata\AccountsActivityInResource.xml
    Failed to load XML. Unable to find record in REP where REP_CODE = AccountActivityInRes_
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE DelegatedAdminPermsByRes REP_XML_META ..\Metadata\DelegatedAdminPermsByRes.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE RequestsInitiated REP_XML_META ..\Metadata\RequestsInitiated.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE RequestsDetailsByStatus REP_XML_META ..\Metadata\RequestsDetailsByStatus.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE DelegatedAdminByResource REP_XML_META ..\Metadata\DelegatedAdminByResource.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE DelegatedAdminPermsByOrg REP_XML_META ..\Metadata\DelegatedAdminPermsByOrg.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE DelegatedAdministratorsByOrg REP_XML_META ..\Metadata\DelegatedAdministratorsByOrg.xml
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE UsersUnlocked REP_XML_META ..\Metadata\UsersUnlocked.xml
    Failed to load XML. Unable to find record in REP where REPCODE = UsersUnlocked_*
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE UsersDeleted REP_XML_META ..\Metadata\UsersDeleted.xml
    Failed to load XML. Unable to find record in REP where REPCODE = UsersDeleted_*
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REPCODE UsersDisabled REP_XML_META ..\Metadata\UsersDisabled.xml_
    Failed to load XML. Unable to find record in REP where REPCODE = UsersDisabled_*
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE PassResetSuccessFail REP_XML_META ..\Metadata\PassResetSuccessFail.xml
    Failed to load XML. Unable to find record in REP where REP_CODE = PassResetSuccessFail_
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE FineGrainedEntExcptByRes REP_XML_META ..\Metadata\FineGrainedEntExcptByRes.xml
    Failed to load XML. Unable to find record in REP where REPCODE = FineGrainedEntExcptByRes_*
    C:\patch\9010-9020\db\Metadata>"C:\Program Files\Java\jdk1.5.0_06\bin\java.exe" -cp "C:\u01\app\oracle\product\9.1.0.1\xellerate\ext\ojdbc14.jar";C:\u01\app\oracle\product\9.1.0.1\xellerate\lib\xlUtils.jar com.thortech.xl.util.LoadXML Oracle oracle.jdbc.driver.OracleDriver jdbc:oracle:thin:@10.0.2.15:1521:oim xladm xladm REP REP_CODE RogueAccountsByResource REP_XML_META ..\Metadata\RogueAccountsByResource.xml
    Failed to load XML. Unable to find record in REP where REP_CODE = RogueAccountsByResource_
    Thanks for your help, Cheers

    From which version are you upgrading ?
    Your thread subject says "Update from Oracle Identity Manager *9.0.1.0* to 9.0.2.0, Missing XML " but it seems that you are upgrading to 9102.
    Those errors are related to reports. Have you deleted any reports in your existing OIM like UserCreated Reports etc ? You can check in REP table.
    Note:
    Becareful while pasting logs:
    jdbc:oracle:thin:@<IP>:<Port>:<SID> <USER> <DB_USER_PASSWORD>

  • Critical patch update for Oracle 10g As 10.1.0.3

    Hi,
    I am facing some security vulnerabilities regarding apache in Oracle 10g applcation server.
    could you please suggest critical patch update for this version.
    Thanks in advance.
    Regards,
    Sathya

    Hi,
    Check below security update from oracle. Check your product in list.
    http://www.oracle.com/technetwork/topics/security/alerts-086861.html
    Thanks,
    JD

  • GoldenGate Replication or Oracle 11g Streams?

    We are working with a customer that is interested in implementing Oracle 11g Streams.
    I don’t know the GoldenGate products and
    I am not real familiar with streams other then hearing it can be tough to tune and if something goes wrong, it can be a pain to get right..
    They recently heard of Oracle’s purchase or GoldenGate and became interested when they read that the company may offer possibly a simpler replication strategy then streams as far as setup, tuning, maintainin, etc..
    Has anyone heard of what Oracle’s future plans/direction are for integrating GoldenGate into their fold, specifically the replication side like streams?
    Thanks

    I predict that in the future the GoldenGate Oracle users are going to get the short end of the stick now that Oracle has purchased them. I do not believe that Oracle purchased GoldenGate for their Oracle to Oracle capabilities. I assume that they wanted to acquire their ability to replicate from non-Oracle databases.
    There is nothing inherently wrong (design-wise) that makes the Oracle Streams product inferior to GoldenGate or Quest's Shareplex product. But both companies have continued to sell their products (which are not cheap) against a product which basically free.
    Why is this? Do you think that Oracle does not have the technical capabilities to build a great replication solution? If Oracle was interested in making a great Oracle to Oracle replication product, they could have invested a small fraction of the amount they paid for GoldenGate and added the necessary resources to build the best replication product on the market. But the don't because that is not what they are interested in doing.
    There are a couple of press releases that Oracle put out about the GoldenGate acquisition and one of the advantages they claim GoldenGate will benefit from is their $30 Billion dollar R&D budget. But why didn't Oracle use some of that 30 billion to make Streams a great product??
    Oracle purchased GG for reasons that have nothing to do with Oracle to Oracle replication. Future resources and priorities will go towards those goals.

  • Replicaition environment from non-Oracle to Oracle using Streams

    Hi guys,
    I'm finding my way to establish a replication environment from any non-Oracle db to Oracle using Streams.
    I've checked Oracle's documentation about this function. The answer is I have to write a custom application which will capture changes in Heterogeneous db and access pl/sql to format this changes to LCRs and enqueue these LCRs into Oracle Streams.
    theoretically, we all can understand this idea, but I don't know if there's any more detailed comments on this.
    Anyone have such experiences, pls give your introduction hereby, and we can make an example like replicate from Sqlserver to Oracle using Streams, or even any other techniques.
    Assuming we have establish the HS connectivity using Transparent gateway.
    Followups are welcomed.

    Hi Yukun,
    I'm developing right now an environment that will replicate changes from an Adabas (mainframe) database to Oracle. The greatest challenge is to pass your (sqlserver or other database) data to the Oracle db. When done you must have (like it is said in documentation) a manual process that will convert your data in LCRs then enqueue them. From there, it is a normal streams environment. I can (try to) answer more detailed questions if you need it. I don't have any experience with sqlserver database.
    Claudine

  • Oracle 9i Streams - Lots of Archive generation.

    Hi,
    We are using Oracle 9i stream for data replication between two database servers running in ARCHIVELOG mode.
    We observed during data replication , with very few transactions, lots of redo, and hence the archived logs are getting generated, which is almost 2.5G per dae. What might be the reason for generation of lots of REDO ? This redo generation is almost 20 times more than the normal redo generation when replication process (capture, propagation and apply process) was not running. Stream replication do generate redo in multiple of normal redo, but not as big as we are getting. What might be the reason for the same.
    Kamlesh C

    Hello,
    You can query the v$sesstat and v$session view so as to find the session which generates
    the most redo. For instance:
    select a.sid, a.serial#, a.username, a.program, b.value "Redo blocks written"
    from v$session a, v$sesstat b
    where a.sid=b.sid
    and b.statistic# = (select statistic# from v$statname
                        where name = 'redo size')
    order by b.value;The query should be executed when the database is generating the Archived logs.
    Hope this help.
    Best regards,
    Jean-Valentin

Maybe you are looking for

  • Let's create a walkthrough for booting ppc's from usb2 drives!

    What started as a personal project has now evolved into a call for a community collaboration. I think there's a new trick here that should be more available to the ppc using public. Let's create a walkthrough for the public that is complete, concise,

  • Calling an ABAP function module

    Hi friends, I am developing an application in EP6 SP2 using JSPDynPage from which, want to call an ABAP function module that returns table and show the values from this table in this application. I went thru various blogs and APIs. I am confused betw

  • Report All SCCM clients and Collections

    Hi all I'm trying to create report All SCCM clients and Collections But I can't convert multiple rows (collections) in one row I got: Name        Collection Name ps1             serverDP ps1               Adobe ps2                CRT ps2             

  • Integrate UIBB in SAP BPM Process

    Hi there, i'd like to integrate a Form UIBB into a SAP BPM Process. I created already a WD-Chip for the UIBB as described in: Creating a CHIP for a Single UIBB For the usage of the chip in BPM i need to create at least one inport ("WD ABAP Chip X-SAP

  • Help: Can't open TIFF in ACR from bridge. ACR not an "Open With" choice

    Hi, I have a TIFF file on my OS 10.4.11 desktop. I open CS3 Bridge and select the file ( A TIF from a scan generated in SilverFast AI Studio) I right click the file and the drop-down menu shows me CS3 as an "Open With" choice but I do not see ACR as