A rman scirpt in RHEL3 linux env

I have a rman scripts file as
rman target /
run
{ backup as backupset incremental level 1 cumulative device type disk tag 'Thu_full_bkup%LEVEL_1'  database;
recover copy of database;
backup device type disk tag 'Thu_full_bkup%LEVEL_1' archivelog all not backed up;
delete noprompt obsolete device type disk;
exit
under RHEL3 with Oracle 10.2.0.2. However, the file will not run. it only login in the rman and stop and it show errors:
./orabackup.sh: line 6: run: command not found
./orabackup.sh: line 7: backup: command not found
./orabackup.sh: line 8: recover: command not found
./orabackup.sh: line 9: backup: command not found
./orabackup.sh: line 10: delete: command not found
I could copy the whole file to the OS level and run well. what should I put in script in order to allow it run properly?

the script is wrong
when you call rman you should have something like
rman target / <<EOF
run
{ backup as backupset incremental level 1 cumulative device type disk tag 'Thu_full_bkup%LEVEL_1' database;
recover copy of database;
backup device type disk tag 'Thu_full_bkup%LEVEL_1' archivelog all not backed up;
delete noprompt obsolete device type disk;
exit
EOF
--

Similar Messages

  • Rman of database under Linux from Windows server

    Dear colleagues! I need some help.
    I have Oracle database 10.2.0.1, which works under Linux CentOS. I've just set up rman, to backup this database to local linux partition. Now, i want to adjust rman, so it starts from Windows 2003 ( i've already install Oracle 10.2.0.1 client for Wondows 32-bit) server to backup this database to local Windows folder.Could you please answer, is it possible at all?
    When i try to perform rman from Windows manually i got this errors:
    channel t1: starting piece 1 at 29-APR-10
    released channel: t1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: failure of backup command on t1 channel at 04/29/2010 03:07:32
    ORA-19504: failed to create file "/u02/app/oracle/product/10.2.0/db_1/dbs/c:123
    bak"
    ORA-27038: created file already exists
    Additional information: 1

    1. You can run the backup from windows server 2003 which take the RMAN backup of your linux server. But this backup can only stored into your linux server.
    2. You can't store the backup set of linux server into windows server.
    Regards
    Asif Kabir
    -- mark your helpful post as correct/helpful.

  • Cant use sql developer in linux Env.

    cant use sql developer in linux Env. the "enter" is not work well.
    please give me some advices.thanks

    Sounds like the old and known problem with the accelerators, try:
    Preferences - Accelerators - Load Preset - DefaultHope that helps,
    K.

  • How to start RMAN in linux env?

    Hi Gurus,
    I am new to RMAN and trying to start RMAN in linux as follows.
    $rman
    when i am giving rman command ,nothing is comming..the cursor is blinking.
    How to resolve the same. I set the following env variable.
    ===========================
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_SID=test
    export ORACLE_HOME=$ORACLE_BASE/dbs
    export PATH=$PATH:$ORACLE_HOME/bin
    ===========================
    and rman executable is available in $ORACLE_HOME/bin.
    $ cd $ORACLE_HOME/bin
    $ pwd
    /u01/app/oracle/dbs/bin
    $ ls -ltr rman*
    -rwxr-x--x 1 oracle dba 10457622 Jul 12 2008 rmanO
    -rwxr-x--x 1 oracle dba 10457622 Jul 12 2008 rman
    $
    Please suggest me how to resolve this problem.
    Regards
    Nagendra.

    Nagendra2 wrote:
    How to resolve the same. I set the following env variable.
    ===========================
    export ORACLE_BASE=/u01/app/oracle
    export ORACLE_SID=test
    export ORACLE_HOME={color:#ff0000}$ORACLE_BASE/dbs{color}
    export PATH=$PATH:$ORACLE_HOME/bin
    ===========================
    I beleive your "ORACLE_HOME" is incorrect!
    This may work better:
    export ORACLE_SID=test
    ORAENV_ASK=NO
    . /usr/local/bin/oraenv
    ORAENV_ASK=YES
    The above will set your environment variables correctly.
    :p

  • RMAN exit problem from linux script..

    Hi all
    I am using 11.1.6.0 on linux centos ..below is the rman script (name is rmanbackup.sh) .
    rman target / <<- EOF
    sql 'alter system archive log current';
    run {
    backup current controlfile;
    exit
    EOF
    echo "script complete for rman backup"
    mkdir /home/oracle/backup_dir
    cp /home/oracle/backup_dir /home/oracle/backup_dir1
    when i execute this, rman exit from script without executing the last 3 operating system commands .
    any help in this regard.

    As Mseberg said, Please try to mark you questions as answered, here is the answer:
    add *#!/bin/ksh* in your script ; also cp -r not cp
    [oracle@wissem ~]$ cat rmanbackup.sh
    #!/bin/ksh
    rman target / <<- EOF
    sql 'alter system archive log current';
    run {
    backup current controlfile;
    exit
    EOF
    echo "script complete for rman backup"
    mkdir /home/oracle/backup_dir
    cp -r /home/oracle/backup_dir /home/oracle/backup_dir1
    [oracle@wissem ~]$ ./rmanbackup.sh
    Recovery Manager: Release 11.2.0.1.0 - Production on Sun Aug 28 17:00:11 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    connected to target database: ORAWISSE (DBID=3964208472)
    RMAN>
    using target database control file instead of recovery catalog
    sql statement: alter system archive log current
    RMAN> 2> 3>
    Starting backup at 28-AUG-11
    allocated channel: ORA_DISK_1
    channel ORA_DISK_1: SID=149 device type=DISK
    channel ORA_DISK_1: starting full datafile backup set
    channel ORA_DISK_1: specifying datafile(s) in backup set
    including current control file in backup set
    channel ORA_DISK_1: starting piece 1 at 28-AUG-11
    channel ORA_DISK_1: finished piece 1 at 28-AUG-11
    piece handle=/home/oracle/app/oracle/flash_recovery_area/ORAWISSE/backupset/2011_08_28/o1_mf_ncnnf_TAG20110828T170014_75np001q_.bkp tag=TAG20110828T170014 comment=NONE
    channel ORA_DISK_1: backup set complete, elapsed time: 00:00:02
    Finished backup at 28-AUG-11
    RMAN>
    Recovery Manager complete.
    script complete for rman backup
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir
    total 0
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir1/
    total 4
    drwxr-xr-x 2 oracle oinstall 4096 Aug 28 17:00 backup_dir
    [oracle@wissem ~]$ ls -rtl /home/oracle/backup_dir1/backup_dir/
    total 0
    [oracle@wissem ~]$

  • PAGESTREAM=YES does not work in LINUX Env

    Hi ,
    Where in the application server can we specify, the cache directory the browser or apache has to look for the report output after report has run.
    MY issue is that , I run a report and the browser shows it up. But when i add the parameter pagestream=YES in the report URL ,it says page not found.
    This happens in a linux environment but not when the same report is run ona 10gas windows env.
    Any help in this regard is appreciated
    Thanks,
    Ashok

    Hello,
    Did you check the HTML code returned to the browser ?
    Menu View -> Source.
    When PAGESTREAM=YES is added, some HTML code is returned
    to the browser with FRAMESET and FRAME tags in order to
    "split " the window in two. a BASE HREF tag is added too.
    Can you check this tag BASE HREF ?
    Regards

  • RMAN Cloning Sun to Linux?

    Hi All,
    Can I do a 10g RMAN cloning from Sun Solaris SPARC to Linux 4/5 ?
    If it possible please let me know the process as well.
    Thanks

    http://www.oracle-base.com/articles/10g/RMANEnhancements10g.php#cross_platform_tablespace_conversion
    How To Use RMAN CONVERT DATABASE for Cross Platform Migration - Note:413586.1
    10g : Transportable Tablespaces Across Different Platforms - Note:243304.1

  • Error while trying to export a report into PDF using JRC (Linux env)

    Hi all,
    I have my web app installed on a Linux environment. When trying to export a CR report into PDF using JRC
    PrintOutputController controller = reportClientDoc.getPrintOutputController();
              ByteArrayInputStream byteArrayInputStream = (ByteArrayInputStream) controller.export(ReportExportFormat.PDF);
    I got this error message:
    19/02/2009     10:21:37     b     INFO     PdfExporter: PdfDocumentModeller.modelPage (page 1)
    19/02/2009     10:21:37     b     INFO     PdfExporter: Modelling page
    19/02/2009     10:21:37     b     INFO     PdfExporter: Creating document manager, text modeller and image modeller.
    19/02/2009     10:21:37     b     ERROR     PdfExporter: Exception caught in PDFFormatter.formatPage (from PdfDocumentModeller.modelPage); aborting export
    java.lang.IllegalArgumentException: Data type is not supported.
         at java.awt.image.Raster.createInterleavedRaster(Raster.java:212)
         at java.awt.image.Raster.createInterleavedRaster(Raster.java:178)
         at java.awt.image.ComponentColorModel.createCompatibleWritableRaster(ComponentColorModel.java:2826)
         at java.awt.image.BufferedImage.<init>(BufferedImage.java:439)
         at com.crystaldecisions.reports.exporters.format.page.pdf.pdflib.u.<init>(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.k.a(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.k.a(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.d(Unknown Source)
         at com.crystaldecisions.reports.exporters.format.page.pdf.b.a(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.if(Unknown Source)
         at com.crystaldecisions.reports.formatter.a.c.a(Unknown Source)
         at com.businessobjects.reports.sdk.b.b.int(Unknown Source)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.request(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.x.a(Unknown Source)
         at com.crystaldecisions.proxy.remoteagent.q.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.dd.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.ReportSource.a(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.sdk.occa.report.application.PrintOutputController.export(Unknown Source)
         at com.crystaldecisions.reports.sdk.PrintOutputController.export(Unknown Source)
    On my Windows environment the JRC export into PDF work perfectly. I know that there are some known issues regarding the usage of JRC on Linux environments. Could this be one of those?
    Any solution (or workaround) would be highly appreciated!
    Thank you!
    PS Maybe this is relevant: I use a MySQL database!
    Edited by: Sandila Catalin on Feb 19, 2009 10:01 AM

    What kind of image do you have in the report?
    Do you have -Djava.awt.headless=true specified for the Java JVM option?
    Sincerely,
    Ted Ueda

  • Purge Cache Error in OBIEE 11g (11.1.1.5.0) in Linux Env.

    Hi all,
    I following the following blog to purge cache in Linux.
    http://shivabizint.wordpress.com/2010/12/22/purge-bi-server-cache-in-obiee11g/
    When I excute I get the following error message. Can someone help me to fix this issue? Thanks
              Oracle BI ODBC Client
              Copyright (c) 1997-2011 Oracle Corporation, All rights reserved
    [0][State: IM002] [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    Connect open failed
    Connection open failed:
    [0][State: IM002] [DataDirect][ODBC lib] System information file not found. Please check the ODBCINI environment variable.
    Connection open failed

    I have exported ODBC path manually.
    export ODBCINI=$ORACLE_INSTANCE/bifoundation/OracleBIApplication/$ORACLE_BI_APPLICATION/setup/odbc.iniAnd then executed the nqcmd command. Now I am getting the different error.
               Oracle BI ODBC Client
               Copyright (c) 1997-2011 Oracle Corporation, All rights reserved
    Initialize client environment failed, possibly caused by incomplete installation
    [nQSError: 47001] Invalid Oracle BI Bin directory:
    /oracle/home/bifoundation/server/bin.
    Initialize client environment failed, possibly caused by incomplete installation
    [nQSError: 47001] Invalid Oracle BI Bin directory:
    /oracle/home/bifoundation/server/bin.
    [0][State: IM004] [DataDirect][ODBC lib] Driver's SQLAllocHandle on SQL_HANDLE_ENV failed Connect open failed

  • Unable to initialize Node Manager on Weblogic 11g (10.3.5) Linux env..

    Hello,
    I worked earlier on Weblogic 8.1 and after a long gap I am coming back to Weblogic Server.
    And I tried to install & setup Weblogic Server 11g R1 (10.3.5). I successfully installed WL 11g on a Linux machine, configured the domain, and admin server without any problem. I created a managed server on the Console and tried to initialize the node manager to be able to start the managed server. I am getting the following error message repeatedly. And I did not select SSL connection, while setting up the environment.
    Can someone help me resolve this issue?
    <Sep 13, 2011 12:19:31 PM> <WARNING> <Uncaught exception in server handlerjavax.net.ssl.SSLHandshakeException: [Security:090476]Invalid/unknown SSL header was received from peer inb01.n2nservices.com - 192.168.112.46 during SSL handshake.>
    javax.net.ssl.SSLHandshakeException: [Security:090476]Invalid/unknown SSL header was received from peer inb01.n2nservices.com - 192.168.112.46 during SSL handshake.
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireException(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.fireAlertSent(Unknown Source)
    at com.certicom.tls.record.ReadHandler.fireAlert(Unknown Source)
    at com.certicom.tls.record.ReadHandler.getProtocolVersion(Unknown Source)
    at com.certicom.tls.record.ReadHandler.checkVersion(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readRecord(Unknown Source)
    at com.certicom.tls.record.ReadHandler.readUntilHandshakeComplete(Unknown Source)
    at com.certicom.tls.interfaceimpl.TLSConnectionImpl.completeHandshake(Unknown Source)
    at com.certicom.tls.record.ReadHandler.read(Unknown Source)
    at com.certicom.io.InputSSLIOStreamWrapper.read(Unknown Source)
    at sun.nio.cs.StreamDecoder.readBytes(StreamDecoder.java:264)
    at sun.nio.cs.StreamDecoder.implRead(StreamDecoder.java:306)
    at sun.nio.cs.StreamDecoder.read(StreamDecoder.java:158)
    at java.io.InputStreamReader.read(InputStreamReader.java:167)
    at java.io.BufferedReader.fill(BufferedReader.java:136)
    at java.io.BufferedReader.readLine(BufferedReader.java:299)
    at java.io.BufferedReader.readLine(BufferedReader.java:362)
    at weblogic.nodemanager.server.Handler.run(Handler.java:71)
    at java.lang.Thread.run(Thread.java:662)
    Sep 13, 2011 12:19:31 PM weblogic.nodemanager.server.Handler run

    Can you see what listen address you have given to Node Manager in console or in config.xml?
    <machine xsi:type="unix-machineType">
    <name>Servername</name>
    <node-manager>
    <name>Servername</name>
    <listen-address>localhost</listen-address>
    </node-manager>
    </machine>
    Another way to start Managed server is to use startManaged.sh script.

  • Java.lang.NoClassDefFoundError when compile class in Weblogic Linux Env.

    Hi,
    I'm trying jay article ( http://jaysensharma.wordpress.com/2009/08/17/mdb3-0-sample-for-weblogic-application-server/ ) for send message
    to JMS, it works great in windows but in Linux is failed.
    I’m facing the issue when compile QueueSend class linux environment,
    but windows it works great.
    in windows I compile the class like this :
    C:\bea\user_projects\domains\MyDomain\bin>setDomainEnv.cmd
    C:\bea\user_projects\domains\MyDomain>java QueueSend t3://localhost:7001
    JMS Message Sent: Test Message Body with counter = 0
    JMS Message Sent: Test Message Body with counter = 1
    in Linux :
    after ./setDomainEnv,
    $bea\…\MYDOMAIN\bin >java QueueSend t3://localhost:7001
    Exception in thread “main” java.lang.NoClassDefFoundError: javax/jms/Message
    Caused by: java.lang.ClassNotFoundException: javax.jms.Message
    at java.net.URLClassLoader$1.run(Unknown Source)
    at java.security.AccessController.doPrivileged(Native Method)
    at java.net.URLClassLoader.findClass(Unknown Source)
    I think it cannot find the java_home or classpath properly, how to solve this issue?
    Really thanks in advance.
    Edited by: muhkah on 09-Apr-2010 19:58

    Hi Muhkah,
    Please add the *"<BEA_HOME>\modules\javax.jms_1.1.1.jar"* file also in the Client ClassPath.
    But the Best thing i will suggest it to Just add the "wlfullClient.jar" file in the client ClassPath...this is a very useful Jar file which solves many many issues. There is a very simple way to create this JAR file: http://jaysensharma.wordpress.com/2010/02/03/building-wlfullclient-jar/
    <BR>
    The advantage of using *"wlfullclient.jar"* is Just Make it once and then reuse this single Jar in any client Application which is going to interact with WebLogic. This Powerful Jar contains almost all the Classes which is needed by a Client.
    Now you can run your Client Program like this :
    java    -classpath    /app/bea10.3/wl_server/server/lib/wlfullclient.jar    QueueSend t3://localhost:7001
    Thanks
    Jay SenSharma

  • HTML to PDF Conversion in Linux env

    Dear all,
    Do you have any idea how to convert HTML to PDF using java in Linux environment.
    Thanks
    SS

    HTML to PDF with Java, using OpenOffice.org - example here: [http://www.dancrintea.ro/html-to-pdf/|http://www.dancrintea.ro/html-to-pdf/]
    You can use OpenOffice.org, running as a server and command it remotely for document convertion.
    Besides HTML to PDF, there are also possible other convertions:
    doc --> pdf, html, txt, rtf
    xls --> pdf, html, csv
    ppt --> pdf, swf
    Code example:
    import officetools.OfficeFile; // this is my tools package
    FileInputStream fis = new FileInputStream(new File("c:/test.html"));
    FileOutputStream fos = new FileOutputStream(new File("c:/test.pdf"));
    // suppose OpenOffice.org runs on localhost, port 8100
    OfficeFile f = new OfficeFile(fis,"localhost","8100", true);
    f.convert(fos,"pdf");
    -----------------------------------------------------------------------------------------------------------------------------------------

  • IConnection classdef exception when running report in websphere-linux env

    hi all,
    <br><br>
           I am running Websphere 6.1 on a linux environment (Red Hat enterprise 5.5). I am using the Crystal Reports 2008 SDK API to generate the report and I get the following exception.
    <br><br>
    com.crystaldecisions.sdk.occa.report.lib.ReportSDKException: com.businessobjects.reports.jdbinterface.connection.IConnection---- Error code:-2147467259 Error code name:failed
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:286)
         at com.businessobjects.sdk.erom.jrc.a.<init>(SourceFile:43)
         at com.businessobjects.sdk.erom.jrc.ReportAgentFactory.createAgent(SourceFile:46)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent$a.<init>(SourceFile:703)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:662)
         at com.crystaldecisions.proxy.remoteagent.RemoteAgent.a(SourceFile:632)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.if(SourceFile:504)
         at com.crystaldecisions.sdk.occa.report.application.ClientDocument.open(SourceFile:669)
         at com.csdcsystems.amanda.common.CRJavaHelper.getSqlStatement(CRJavaHelper.java:882)
         at com.ibm._jsp._CustomReportParameters._jspService(_CustomReportParameters.java:289)
         at com.ibm.ws.jsp.runtime.HttpJspBase.service(HttpJspBase.java:87)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1146)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.service(ServletWrapper.java:1087)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:145)
         at com.csdcsystems.amanda.common.CsdcServletFilter.doFilter(CsdcServletFilter.java:107)
         at com.ibm.ws.webcontainer.filter.FilterInstanceWrapper.doFilter(FilterInstanceWrapper.java:190)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain.doFilter(WebAppFilterChain.java:130)
         at com.ibm.ws.webcontainer.filter.WebAppFilterChain._doFilter(WebAppFilterChain.java:87)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:848)
         at com.ibm.ws.webcontainer.filter.WebAppFilterManager.doFilter(WebAppFilterManager.java:691)
         at com.ibm.ws.webcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:588)
         at com.ibm.ws.wswebcontainer.servlet.ServletWrapper.handleRequest(ServletWrapper.java:526)
         at com.ibm.wsspi.webcontainer.servlet.GenericServletWrapper.handleRequest(GenericServletWrapper.java:122)
         at <br>com.ibm.ws.jsp.webcontainerext.AbstractJSPExtensionServletWrapper.handleRequest(AbstractJSPExtensionServletWrapper.java:233)<br>
         at com.ibm.ws.webcontainer.webapp.WebApp.handleRequest(WebApp.java:3574)
         at com.ibm.ws.webcontainer.webapp.WebGroup.handleRequest(WebGroup.java:269)
         at com.ibm.ws.webcontainer.WebContainer.handleRequest(WebContainer.java:831)
         at com.ibm.ws.wswebcontainer.WebContainer.handleRequest(WebContainer.java:1478)
         at com.ibm.ws.webcontainer.channel.WCChannelLink.ready(WCChannelLink.java:133)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleDiscrimination(HttpInboundLink.java:450)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.handleNewRequest(HttpInboundLink.java:508)
         at com.ibm.ws.http.channel.inbound.impl.HttpInboundLink.processRequest(HttpInboundLink.java:296)
         at com.ibm.ws.http.channel.inbound.impl.HttpICLReadCallback.complete(HttpICLReadCallback.java:102)
         at <br>com.ibm.ws.ssl.channel.impl.SSLReadServiceContext$SSLReadCompletedCallback.complete(SSLReadServiceContext.java:1818)<br>
         at com.ibm.ws.tcp.channel.impl.AioReadCompletionListener.futureCompleted(AioReadCompletionListener.java:165)
         at com.ibm.io.async.AbstractAsyncFuture.invokeCallback(AbstractAsyncFuture.java:217)
         at com.ibm.io.async.AsyncChannelFuture.fireCompletionActions(AsyncChannelFuture.java:161)
         at com.ibm.io.async.AsyncFuture.completed(AsyncFuture.java:136)
         at com.ibm.io.async.ResultHandler.complete(ResultHandler.java:196)
         at com.ibm.io.async.ResultHandler.runEventProcessingLoop(ResultHandler.java:751)
         at com.ibm.io.async.ResultHandler$2.run(ResultHandler.java:881)
         at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:1551)<br><br>
    Caused by: java.lang.NoClassDefFoundError: com.businessobjects.reports.jdbinterface.connection.IConnection
         at java.lang.J9VMInternals.verifyImpl(Native Method)
         at java.lang.J9VMInternals.verify(J9VMInternals.java:59)
         at java.lang.J9VMInternals.initialize(J9VMInternals.java:120)
         at com.crystaldecisions.reports.queryengine.Session.a2(SourceFile:244)
         at com.crystaldecisions.reports.datafoundation.DataFoundation.do(SourceFile:376)
         at com.crystaldecisions.reports.dataengine.dfadapter.DFAdapter.do(SourceFile:111)
         at com.crystaldecisions.reports.dataengine.datafoundation.CreateDataConnectionCommand.new(SourceFile:81)
         at com.crystaldecisions.reports.common.CommandManager.a(SourceFile:71)
         at com.crystaldecisions.reports.common.Document.a(SourceFile:203)
         at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:442)
         at com.businessobjects.reports.reportconverter.v12.e.a(SourceFile:231)
         at com.businessobjects.reports.reportconverter.v12.d.m(SourceFile:192)
         at com.businessobjects.reports.reportconverter.v12.f.if(SourceFile:210)
         at com.businessobjects.reports.reportconverter.v12.V12SaveLoader.a(SourceFile:242)
         at com.businessobjects.reports.loader.ReportLoader.a(SourceFile:205)
         at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:137)
         at com.businessobjects.reports.sdk.JRCReportLoader.a(SourceFile:76)
         at com.businessobjects.reports.sdk.requesthandler.ReportDocumentRequestHandler.a(SourceFile:136)
         at com.businessobjects.reports.sdk.JRCCommunicationAdapter.<init>(SourceFile:229)
         ... 42 more<br>
    <br><br>
       The code is packaged as an EAR file and this EAR file works fine in a websphere windows environment. So it is not a classpath issue which I am pretty sure of. I also verified that the IConnection class is in a JAR file within the EAR file so no doubts on that front.
    <br><br>
        Has anyone else run into this issue? Please feel free to ask any other questions pertaining to the environment which I have where I ran into this issue.
    <br><br>
    Thanks,<br>
    Yogi<br>
    Edited by: Yogendran.G on Feb 25, 2011 3:37 PM

    Thank you for your reply.
    The answer to your question concerning if Websphere is a clean install is no.  The client has other applications running on that server.  We do not have access to that server other than the log files and I requested information as to what other applications are on the server.
    We did try adding a known working version of the IIOMetadata class in the ear file and deploying it in the hopes that  class will be loaded before using any other version.  Unfortunately, we receive the posted errors.  Which may mean that a different version of the class has already been loaded in memory and that is the one being accessed.  A request would have to be made to the client for a shutdown and restart of Websphere in determining if that may be the case.  Since there are other applications running, coordination and communication to the other application owner will need to be done first.
    Any additional ideas will be appreciated.
    Thank you.
    Tony.

  • Could not find i386-glibc21-linux.env.sh

    I need to install Oracle 816 for RedHat 7.1.
    But when I check file under /usr. There is no i386-glibc21-linux
    directory. Anyone know why??
    Also, how do I install package?? (rpm??) I need to install
    compat-egcs, compat-glibc and compat-libs (6.2 compatibility
    package)..thanks..

    u haven't installed the rpms so
    u cant see the i386---.sh file
    to install a rpm.
    use
    rpm -ivh <rpm-file>
    or if u have access to X then
    either use kpackage or gnomrpm
    they are graphical front ends to rpm

  • Display linux env var $JAVA_HOME in OSP/OUI installer automatically

    Hi,
    How do i make use of the OSP (getEnv) to get the value of the $JAVA_HOME env variable and save it to an existing installer variable to display? thank you.
    j.
    Edited by: user13682581 on Jun 13, 2011 6:26 PM

    Hello Gurus,
    I've finnaly bypass all that mess with web logic setup ,
    It's easy
    Download the
    Fist Download and Setup Weblogic
    Then Give Executable Privoiliges,
    Chmod 777 net_oepe111130_wls1032_linux32.bin
    Then Export Display
    export DISPLAY=192.168.48.28:0.0
    then run that Crap "bin" file" and it shows in a Grapich Interface,
    [oracle@srvldbp04 tmp]$ export DISPLAY=192.168.48.28:0.0
    [oracle@srvldbp04 tmp]$ ./net_oepe111130_wls1032_linux32.bin
    Extracting 0%....................................................................................................100%
    That's Cool,
    Grid 11G - I like it
    Thxs
    Carlos

Maybe you are looking for