AIX /oracleindex issue ?

Our environment:- Oracle 9i/ AIX 5.2
A question if I may, The /oracleindex mount point on our AIX server is at 94% full (Its increased by 3% in a couple of months). Is there a way that I can re organise the oracle indexes and in doing so will hopefully remove some ‘dead space/fragmented’ and free up some space?

Hi,
After switchover to Node B check your environment variables are correct / same as of node A.
Check LIBPATH variable, it should get libicuuc30.a, libicudata30.a, libicui18n30.a.
Regards,
Sachin Rane.

Similar Messages

  • Weblogic 8.1 SP4 on AIX Performance issues

    We are currently facing big performance issues with our servers that are holding just a couple of applications. The server specs are:
    System Model: IBM,7040-681
    Processor Type: PowerPC_POWER4
    Number Of Processors: 2
    Processor Clock Speed: 1500 MHz
    CPU Type: 64-bit
    Kernel Type: 64-bit
    Memory Size: 6144 MB
    Good Memory Size: 6144 MB
    Java version "1.4.2"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.4.2)
    Classic VM (build 1.4.2, J2RE 1.4.2 IBM AIX build ca142-20060824 (SR6) (JIT
    enabled: jitc))
    Is anybody aware of this kind of problems for Wl8.1+AIX?
    Thanks,
    Johann

    I am getting the same error as well
    cannot load libary 'stackdump': java.lang.UnsatisfiedLinkError: no stackdump in java.library.path
    I am creating a simple domain using the domain config wizard and I hope all the PATH and LD_LIBRARY_PATH are set by the default scripts. But I am still getting this error.
    But Kill -3 <PID> works though!
    Is is a know problem OR am I missing something?!
    Bala

  • Oracle Lite 10.3.0.3 Installation AIX 5L Issue

    Hi,
    While installing oracle lite 10.3.0.3 in AIX 5L, I see following error in repository.log. Any idea?:-
    Creating mobileserver OC4J instance ...
    Creating OC4J instance "mobileserver"...
    A new OC4J instance "mobileserver" is created in the group "default_group".
    Activating mobileserver instance ...
    Setting bootclasspath for OC4J instance
    mobileserver OC4J instance starting ...
    opmnctl: starting opmn managed processes...
    Deploying Mobile Server application ...
    deployer: deployer:oc4j:opmn://localhost:6007/mobileserver
    oracle.oc4j.admin.deploy.api.J2EEDeploymentException:
    Failed at "Could not get DeploymentManager".
    This is typically the result of an invalid deployer URI format being supplied, the target server not being in a started state or incorrect authentication details being supplied.
    More information is available by enabling logging -- please see the Oracle Containers for J2EE Configuration and Administration Guide for details.
    at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.<init>(J2EEDeploymentManager.java:147)
    at oracle.lite.web.migrate.OASDeploy.deployApp(Unknown Source)
    at oracle.lite.web.migrate.OASDeploy.deploy(Unknown Source)
    at oracle.lite.web.migrate.RepShell.unixShell(Unknown Source)
    at oracle.lite.web.migrate.RepShell.<init>(Unknown Source)
    at oracle.lite.web.migrate.InstallFiles.run(Unknown Source)
    at java.lang.Thread.run(Thread.java:810)
    Caused by: javax.enterprise.deploy.spi.exceptions.DeploymentManagerCreationException: Could not get DeploymentManager
    at javax.enterprise.deploy.shared.factories.DeploymentFactoryManager.getDeploymentManager(DeploymentFactoryManager.java:120)
    at oracle.oc4j.admin.deploy.api.J2EEDeploymentManager.<init>(J2EEDeploymentManager.java:140)
    ... 6 more
    Thanks in advance,

    I think it should be out end of this month (June '10).

  • Essbase 11.1.2.1 AIX Install Issue

    Can't seem to get Essbase 11.1.2.1 software installed. When we run the installer, it hangs on the component install of Oracle HTTP Server under the Foundation Services. It does the following step, then hangs for 15 minutes (The timeout value):
    [2011-11-09T14:47:01.363-05:00] [EPMINS] [TRACE] [EPMINS-00001] [oracle.EPMINS] [tid: 13] [SRC_CLASS: com.hyperion.install.action.impl.ISMPExecAction] [arg: Waiting for OCM post-install thread with timeout set to 900000 ms] trace: Waiting for OCM post-install thread with timeout set to 900000 ms
    In the log directory the file, installTool-install-stderr.log has a line:
    could not utilize start class: com.installshield.wizard.Wizard
    rootpre.sh was run, so that is not it.
    Any help would be most appreciated.
    Thanks!
    Pete

    Hi John,
    Thanks a lot!
    Could you help me to figure out the following questions,please?
    1. Is Essbase 11.1.2.2 Client do not officially support installed alone on Linux/Unix platform?
    2. In the support file "How to Install the Essbase Client Tools MaxL and ESSCMD on a Planning Server Installed on Unix Server", I found that the Essbase server must be installed on a Linux platform first, if I install it on a Windows platform, there will be no such files:
    startMaxl.sh
    startEsscmd.sh
    setEssbaseEnv.sh
    so I cannot copy these to my created directory. So is that mean, if I want to install Essbase 11.1.2.2 client on a Linux Red hat6.0/Aix7.1, I must Firstly installed Essbase Server on another no-windows OS to get the above files?
    Thanks very much!
    BRs,
    Tracy

  • RANK Function in AIX vs Windows

    I am facing an issue where when I run my report using my windows machine I am able to get the right results with the RANK function. However, when I ran the same report in my AIX machine, I got the following error:
    Odbc driver returned an error (SQLExecDirectW).
    Error Details
    Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 378077472. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 46008] Internal error: File server/Query/Optimizer/ServiceInterfaceMgr/Src/SQOIGeneratorBuiltIn.cpp, line 3403. (HY000)
    If anyone has run into this, please let me know.
    Thanks.

    One point to make is the Rank function works if you create 1 column with the RANK function in Answers(i.e. Rank(Fact.Sales) ). The issue comes up when you try to create a BIN column to bucket the RANKs in a seperate column.
    Here's the SQL:
    SELECT Location.Location saw_0, case WHEN RANK(Metrics.Sales) BETWEEN 1 AND 5 then '1-5' WHEN RANK(Metrics.Sales) BETWEEN 5 AND 10 then '5-10' else 'other' end saw_1, Metrics.Sales saw_2, RANK(Metrics.Sales) saw_3 FROM "Rank Prototype" ORDER BY saw_0
    So Basically, the issue is when you have a Bucketed Rank Sales Column and a simple Rank Column in the same request. (In AIX the issue exists, in Windows there is no issue.)

  • Parse of Date based conditions has broken since installing FP3.2

    Just upgraded an AIX BO3.1 sp3 box to Fix Pack 3.2 (both BOE and BOE SAP Integration)
    Have a mandatory filter object based on a date - format being DD.MM.YYYY.
    Am now getting the following error when parsing the Universe on a fp32 client...
    Parse Failed: Exception: DBD, The value entered is not Valid. It must adhere to one of the following formats. YYYYMMDD DD.MM.YYYY State: N/A
    ...and when using WebI against the universe get similar error as you'd expect.
    Moving universe/report to a non fp32 box and it starts working again.
    Anyone else experienced this with FP32? the FP resolves some AIX specific issues so we could do with running it... but not at the expense of all our reports that use date conditions
    Regards,
    jez.
    AgilityWorks.co.uk

    to be clear - it is NOT working in WebI or the Universe.
    this parses and works perfectly without the FixPack 3.2...
    <FILTER KEY="[!V000001]"><CONDITION OPERATORCONDITION="Equal"><CONSTANT TECH_NAME="@Prompt('Calendar Day','A','Calendar Day\LovCalendar DayBase',mono,primary_key)"/></CONDITION></FILTER>
    looking through the fixed issues list i cant see anything specifically that would effect this.
    Cheers,
    Jez
    AgilityWorks.co.uk

  • Starting external progran SAPXPG failed (SM69)

    System Information:
    ECC 6, Oracle 10.2, AIX 5.3, Kernel Patch level 147
    Hi all,
    We were encountered problems when try to scheduled actions in DB13.
    We had install CI & DB on separate server and the rfc SAPXPG_DBDEST_<Destination> is not working.
    We tried to use RSH in SM49/SM69 to start external program SAPXPG in target host remotely, however, it return External program terminated with exit code 1 when we executed it.
    *External command we used
    Rsh
    Target host u2013l <sid>adm sapxpg
    Logs of dev_cp:
    Trace file of control program (trace level 3)
    < Function: BtcTrcInit> Function: main  SAPXPG 700
    2009-02-05--21-18-10 : Before BtcXpgDetach
      > Function: BtcXpgDetach  < Function: BtcXpgDetach  Accept RFC connection from R/3 system
    2009-02-05--21-18-10 : Before RfcAccept
    2009-02-05--21-18-10 : RfcAccept returned OK
    security check switched OFF
      Install RFC call SAPXPG_START_XPG
      Install RFC call SAPXPG_START_XPG_LONG
      Install RFC call SAPXPG_END_XPG
      Wait for RFC call SAPXPG_START_XPG or SAPXPG_START_XPG_LONG
    2009-02-05--21-18-10 : Before first call of RFCDispatch
      > Function: BtcXpgStartXpgLong
    2009-02-05--21-18-10 : Beginning of BtcXpgStartXpgLong
        > Function: BtcXpgStartXpgImportLong      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgTable      < Function: BtcXpgTable    < Function: BtcXpgStartXpgImportLong
    BtcXpgStartXpgLong: special_trace_flag = <3>
        > Function: BtcXpgStartXpgInt      > Function: BtcXpgItTransfer        Content of source log table:
              Line  Text
              <No StdOut/StdErr output reported>
            Target log table is not identical to source
            ItGetLine terminated with NULL
          < Function: BtcXpgItTransfer      > Function: BtcTrcReset      < Function: BtcTrcReset      Call mode: VIA RFC
          Input arguments of BtcXpgStartXpg:
            External program: rsh
          tracecntl = : 3
            Program argument string: bir-hrerpdb -l prdadm sappxpg
            Contents of control flags:
              StdIn control flag: redirect StdIn
              StdOut control flag: store StdOut output in memory
              StdErr control flag: store StdErr output in memory
              Trace control flag: unknown contents
              Termination control flag: control program will wait for termination
          > Function: BtcXpgCheck        > Function: BtcXpgArgv
              parameter number 1:
              Scanned parameter: bir-hrerpdb
              parameter number 2:
              Scanned parameter: -l
              parameter number 3:
              Scanned parameter: prdadm
              parameter number 4:
              Scanned parameter: sappxpg
              Total number of arguments scanned: 4
              Argument argv[0]: rsh
            < Function: BtcXpgArgv      < Function: BtcXpgCheck      > Function: BtcXpgSigInst        set signal handler for SIGCHLD to SIG_DFL
            old signal handler for SIGCHLD: SIG_DFL
          < Function: BtcXpgSigInst      > Function: BtcXpgStart        Process id: 172232
            Parent process id: 352710
            > Function: BtcTrcIni      Start status of external program: external program successfully started
          Id of external process: 0000323746
          StdOut/StdErr collected in memory
            Line  Text
            <No StdOut/StdErr output reported>
        < Function: BtcXpgStartXpgInt    > Function: BtcXpgStartXpgExport      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam    < Function: BtcXpgStartXpgExport
    2009-02-05--21-18-10 : End of BtcXpgStartXpgLong
      < Function: BtcXpgStartXpgLong
    2009-02-05--21-18-10 : After first call of RFCDispatch
      Wait for RFC call SAPXPG_END_XPG
    2009-02-05--21-18-10 : Before second call of RFCDispatch
      > Function: BtcXpgEndXpg
    2009-02-05--21-18-10 : Beginning of BtcXpgEndXpg
        > Function: BtcXpgStartXpgExport      > Function: BtcXpgTable      < Function: BtcXpgTable    < Function: BtcXpgEndXpgImport    > Function: BtcXpgEndXpgInt      > Function: BtcXpgItTransfer        Content of source log table:
              Line  Text
              <No StdOut/StdErr output reported>
            Target log table is not identical to source
            ItGetLine terminated with NULL
          < Function: BtcXpgItTransfer      > Function: BtcXpgReadChild        Process executing external program has terminated
          < Function: BtcXpgReadChild      > Function: BtcXpgEnd        > Function: BtcXpgLog
              Log message (44 byte): External program terminated with exit code 1
            < Function: BtcXpgLog
          < Function: BtcXpgEnd      Termination status of external program: program terminated with error code 1
          StdOut/StdErr collected in memory
        < Function: BtcXpgEndXpgInt    > Function: BtcXpgEndXpgExport      > Function: BtcXpgParam      < Function: BtcXpgParam      > Function: BtcXpgParam      < Function: BtcXpgParam    < Function: BtcXpgEndXpgExport
    2009-02-05--21-18-10 : End of BtcXpgEndXpg
      < Function: BtcXpgEndXpg
    2009-02-05--21-18-10 : After second call of RFCDispatch
    2009-02-05--21-18-10 : After call of RfcClose (wait)
    < Function: main
    2009-02-05--21-18-10 : End of SAPXPG: main
    We couldnu2019t located any clear error indication that might help us in troubleshooting.
    We already configured settings in .rhosts file & we had resolve the permission problem
    We executed the following commands as user <sid>adm:
    In DB host, we executed rsh <CI host> date & it works.
    But in DB hosts, its doesn't work when we executed rsh <DB host> date
    Is this issue should be isolated as AIX OS issue?
    We couldn't execute any activities from DB13 as the DB rfc destination is not working.
    Is that alternative way that we can execute sapxpg on DB host?
    Or we have to install standalone gateway as solution? It's that any impact if we installing standalone gateway at DB host now (It's production system)?
    Thanks.
    BR,
    Terry

    Hi Guru,
    When we tried to execute the following command from host DB:
    rsh <Host CI> date
    it was return results.
    However, if we tried to execute from host CI:
    rsh <Host DB> data
    it was return no results.
    That's means we could'nt remotely start any of external command at DB host from CI host.
    Start external program error was isolated within operating system level.
    Any luck on this?
    Thanks.
    BR,
    Terry

  • Opatch lsinventory -detail

    Hi,
    on 10g R2 AIX,
    when issuing opatch lsinventory commande, the DB should be stopped ?
    Thanks.

    here you are :
    :/appli/oracle/product/10.2.0/db_1#ls -ltr /appli/oracle/product/10.2.0/db_1/OPatch
    total 72
    -rw-r--r--    1 oracle   dba            2571 Aug  8 2006  opatch.pl
    -rw-r--r--    1 oracle   dba           19263 Dec 26 2006  emdpatch.pl
    -rwxr-xr-x    1 oracle   dba            6813 Mar 13 2008  opatch
    drwxr-x---    4 oracle   dba             256 Dec  1 14:31 opatchprereqs
    -rw-r--r--    1 oracle   dba              49 Dec  1 14:31 opatch.ini
    drwxr-x---    2 oracle   dba             256 Dec  1 14:31 jlib
    drwxr-x---    2 oracle   dba             256 Dec  1 14:31 docs

  • SAP SRM Prod with Oracle DB and AIX 5.3 Performance Issue.

    Hi Basis Gurus,
    Today my SAP PRD system all of a sudden was running slow and users had difficulties executing TCodes as it took minutes before the screen appeared.My system is SAP SRM 4.00, Oracle Release 11.2.0.1.0 and AIX 5.3.
    From Basis point of view , we noticed that all the work process were hanged due to RFCs' occupying it.Couldnt investigate further on the system as we needed to restart asap because users needed to log on. A quick check on SICK shows no errors.What we managed to find out is that we needed to check this parameter below and set it accordingly:-
    rdisp/rfc_min_wait_dia_wp:-
    Definition
    Number of work processes kept free for other users.
    Use
    This parameter is used to reserve a number of dialog work processes for dialog mode. It prevents parallel RFCs from occupying all the processes.
    The parameter rdisp/wp_no_dia specifies the absolute number of dialog work processes.                               
    Unit: number of dialog work processes
    Default value: 1
    Example
    If 10 dialog work processes are configured for the instance (rdisp/wp_no_dia = 10) and the parameter rdisp/rfc_min_wait_dia_wp  = 3 is set, parallel RFCs can occupy a maximun of 7 dialog work processes. Three dialog work processes always remain free for dialog mode.
    There are 20 DIA processes in our system, perhaps reserving a minimum of about 5 work processes for DIA users will be useful via the parameter.
    So my first question would be is there any other suggestions besides adjusting the mentioned parameter above in order to ensure that no work processors going into hang state due to RFCs' occupying it as this issue always happens at the end of the month only when there are massive users accessing it.
    When we went for a restart of the system we encountered another issue. Steps to the issue are as below:-
    1) Did a proper shutdown of Oracle and SAP.
    2) When we start using startsap script, it doesn't start DB so we started DB manually but listener was having problem
        so we stopped all.
    3) We also did a cleanipc, it too throws below error:-
    sidadm> cleanipc <systemno> remove
                   exec(): 0509-036 Cannot load program cleanipc because of the following errors:
                   0509-130 Symbol resolution failed for cleanipc because:
                   0509-136   Symbol memmove (number 106) is not exported from
                   dependent module /usr/sap/sid/SYS/exe/run/libsapu16.so.
                   0509-192 Examine .loader section symbols with the
                   'dump -Tv' command.
    4) Also the Listener file has no contents,it's null file.
    5) This is another error :-
        exec(): 0509-036 Cannot load program /oracle/sid/112_64/bin/tnslsnr because of the following errors:
        0509-150   Dependent module /oracle/sid/112_64/lib/libttsh11.so could not be loaded.
        0509-101   The module has too many section headers
        or the file is damaged
    The libttsh11.so file was empty dated 25th timestamp as below in PRD:-
    -rw-rr    1 sid   dba               0 Nov 25 07:12 libttsh11.so
    Further checking has let me to understand this is an Oracle Bug from this link:-
    http://gavinsoorma.com/2009/12/11-1-0-6-clusterware-upgrade-to-11-1-0-7/
    This Oracle bug only happens in an Upgrade time and how could this happen to my Production system during a restart process.
    Also this system was restarted during the last weekend's maintainance window and it came up with no issues.
    6) We copied over the libttsh11.so from our QA environment to PRD and did a Startup:-
    -rwxr-x---    1 sid   dba        65967496 Nov 25 07:40 libttsh11.so (This is the copied over file from QA)
    7) After Startup everything has been in order till now.
    My second question is what went wrong with the libttsh11.so file. How could it be 0 size in PRD when no signs of changes had happen to the PRD system. Is this a proven Oracle Bug or something else since I have never encountered anything like this before. Hope all the Gurus here could shed some light into my 2 questions as I am looking for positive answers.
    Thank you.
    Regards,
    John

    Hi,
    Firstly I would suggest you to upgrade your database from Oracle Release 11.2.0.1.0 to Oracle Release 11.2.0.2 . This is the recommended Oracle 11g database version  for SAP solutions. Many of your problem will get resolved with it.
    Question 1:
    So my first question would be is there any other suggestions besides adjusting the mentioned parameter above in order to ensure that no work processors going into hang state due to RFCs' occupying it as this issue always happens at the end of the month only when there are massive users accessing it.
    For immediate resolution the approach you have followed is correct viz limiting number of dialog processes for RFC. Secondly you need to analyze why RFC processing takes so much time. You need check which programs are getting executed by those RFC.
    Generate EarlyWatch report for more detailed view
    Question 2:
    My second question is what went wrong with the libttsh11.so file. How could it be 0 size in PRD when no signs of changes had happen to the PRD system. Is this a proven Oracle Bug or something else since I have never encountered anything like this before.
    The libttsh11.so library cannot be found in the related directory.
    Cause
    The file system is mounted using CIO option, but per Note 257338.1 Direct I/O (DIO) and Concurrent I/O (CIO) on AIX 5L, an ORACLE_HOME on a filesystem mounted with "cio" option is not supported.
    Such a configuration will cause, installation, relinking and other unexpected problems.
    Solution
    Disable the CIO option on the filesystem.
    References
    NOTE:257338.1 - Direct I/O (DIO) and Concurrent I/O (CIO) on AIX 5L
    Hope this helps.
    Regards,
    Deepak Kori

  • Issue installing PI 7.1 EHP1 on AIX,Oracle

    Hi Friends,
    I am installing PI 7.1 EHP1 on AIX,Oracle.Iam facing some issue during installation(25th phase of installation).
    I have 10 Gb RAM and 20 Gb SWAP.
    Do you have any idea?
    sapinst.log:
    13.10.2009 11:02:22
    GetProcessList
    FAIL: NIECONN_REFUSED (Connection refused), NiRawConnect failed in plugin_fopen()
    INFO 2009-10-13 11:02:22.229
    Connect to message server (s0001079/3901) succeeded.
    INFO 2009-10-13 11:02:22.229
    Disconnect from message server (s0001079/3901) succeeded.
    WARNING[E] 2009-10-13 11:02:22.240
    CJS-30087  Instance XDN/SCS01 [PARTIAL] did not stop after 2:00 minutes. Giving up.
    ERROR 2009-10-13 11:02:23.421
    FCO-00011  The step stopInstance with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_Instance|ind|ind|ind|ind|1|0|stopInstance was executed with status ERROR .
    WARNING 2009-10-13 11:02:23.576
    Could not get property IDs of the JavaScript object.
    ERROR 2009-10-13 11:02:23.577
    FJS-00010  Could not get value for property .

    Hi Milos,
    The problem is with the starting of the SCS instance by sapinst, on AIX the port that we used (SAP default) 3901 during the input step for SCS was in usage at AIX by some application
    nimsh 3901/tcp # NIM Service Handler
    nimsh 3901/udp # NIM Service Handler
    I had to free up the port for some time, stop processes running on the port and then continued with my installation. After the installation was complete, I changed the port number of SCS to 3601 and gave the port back to AIX application.
    Beaware that you have to change the port number is various places, including Config tool, all the JSPM, Configtool properties
    Check if this helps to resolve your problem, else I will have to recollect if I resolved it differently.
    Regards,
    Nilesh

  • Shared libary gives error in 10.1.0.3 on AIX 5.2. Is it Stability Issue

    Hi,
    I am trying to make a shared library immediately after the server installation for my 32bit MicroFocus COBOL
    application which is running fine on 8.1.7.4
    make LIBDIR=lib32 LOC_RTSORA=libmfora.so -f ins_precomp.mk libmfora.so
    After that I copy the libmfora.so into $ORACLE_HOME/lib32
    later I try to prepare the runtime using
    cob32 -vxo rts32 -e "" -L $ORACLE_HOME/lib32 -l mfora $ORACLE_HOME/precomp/lib32/cobsqlintf.o
    It creates successfully but when I run it I get this error
    &gt; rts32 &gt; err.txt
    exec(): 0509-036 Cannot load program rts32 because of the following errors:
    0509-130 Symbol resolution failed for /data/oracle/product/10.1.0.3/lib32/libnnz10.so because:
    0509-136 Symbol SSL_ALG_ANSIPRNG_BS (number 67) is not exported from
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA_CLIENTSIDE_BS (number 68) is not exported f
    rom
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT1024_WITH_DES_CBC_SHA_SERVERSIDE_BS (number 69) is not exported f
    rom
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA_CLIENTSIDE_BS (number 70) is not exported fr
    om
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT1024_WITH_RC4_56_SHA_SERVERSIDE_BS (number 71) is not exported fr
    om
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA_CLIENTSIDE_BS (number 72) is not exported fro
    m
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_EXPORT_WITH_DES40_CBC_SHA_SERVERSIDE_BS (number 73) is not exported fro
    m
    dependent module rts32.
    0509-136 Symbol SSL_ALG_CIPHER_DHE_DSS_WITH_3DES_EDE_CBC_SHA_CLIENTSIDE_BS (number 74) is not exported from
    dependent module rts32.
    Previously when we run rts32 we should get this message
    &gt; rts32
    V4.0 revision 0 build 10/10/2 G; 20504. Run Time System RXCAK/AA0/00000S
    Without creating the shared library when I just the rtsora32 then also I get this error
    &gt; rtsora32
    exec(): 0509-036 Cannot load program rtsora32 because of the following errors:
    0509-130 Symbol resolution failed for /data/oracle/product/10.1.0.3/lib32/libnnz10.so because:
    0509-136 Symbol ssl_GetPeerCertData (number 225) is not exported from
    dependent module rtsora32.
    0509-136 Symbol ssl_SetCertRef (number 232) is not exported from
    dependent module rtsora32.
    0509-192 Examine .loader section symbols with the
    'dump -Tv' command.
    Somebody help us to solve this issue
    Is this because of any stability issues of 10.1.0.3 for AIX
    Regards
    Ajay

    10.1.0.3 is a patchset, not a full release. Patchset are available on metalink , not on OTN.
    You can have many databases related to a specific ORACLE_HOME, as long as your system has enough resources to handle these databases. When you create a new database there's no need to stop running database instances.
    Installation guide and release notes for 10.2 + certify section of metalink have all informations concerning OS requirements.
    Werner

  • CR4E 2.0 font issue on unix/aix

    I have designed my report on windows using courier new font and is working good. I also checked the font properties of the output pdf and is courier new(embedded subset). But when I deploy the same ear file on WAS6.1 on AIX it is using different font and the output pdf properties shows the font as LucidaSansTypewritterRegular(embedded subset) and some of the characters ()) are displayed as ? and also get "Cannot extract the embedded font AAAAA:LucidaSansTypewritterRegular, some characters may not display or print properly" error message when I open it in Adobe reader 9.1.
    How did it pick the LucidaSansTypewritterRegular font on unix if the template specifies Courier New?
    Can I copy the same font file from my windows machine to jre/fonts folder of WAS61 on AIX? Are there any compatibilty or licensing issues?
    Any help is appreciated. Thanks

    Try to copy windows fonts to WAS JVM fonts folder (something like: opt/IBM/WebSphere/AppServer/java/jre/lib/fonts).

  • Cannot solve the ora-4030 issue in oracle11g (AIX 6.1) platform !!

    Dear Friends ,
    We are using Oracle 11g (11.2.0.1.0) in AIX 6.1 server . The oracle database has configured newly in AIX 6.1 last 7 days ago . Now we want to import our data from another 11g (R2) database . When we are going to import the data , then we face the below error after 15/20 min . the dump size near about 1 gb.
    while importing the dmp file shows the error as follows:
    $ impdp t24test/password DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.
    imp.log REMAP_SCHEMA=t24:t24test REMAP_TABLESPACE='T24DISTDATA':'T24DATAXML'
    REMAP_TABLESPACE='T24DISTINDEX':'T24INDEXXML'
    Import: Release 11.2.0.1.0 - Production on Sun Jul 18 15:34:12 2010
    Copyright (c) 1982, 2009, Oracle and/or its affiliates. All rights reserved.
    Connected to: Oracle Database 11g Enterprise Edition Release 11.2.0.1.0 -64bit Production
    With the Partitioning, OLAP, Data Mining and Real Application Testing options Master >able "T24TEST"."SYS_IMPORT_FULL_01" successfully loaded/unloaded
    Starting "T24TEST"."SYS_IMPORT_FULL_01": t24test/********
    DUMPFILE=isb_dir:R09.MB.dmp LOGFILE=isb_dir:t24test.mb.imp.log REMAP_SCHEMA=t24:t24test
    REMAP_TABLESPACE=T24DISTDATA:T24DATAXML REMAP_TABLESPACE=T24DISTINDEX:T24INDEXXML
    Processing object type SCHEMA_EXPORT/PRE_SCHEMA/PROCACT_SCHEMA
    Processing object type SCHEMA_EXPORT/TABLE/TABLE
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW00" prematurely terminated
    ORA-31671: Worker process DW00 had an unhandled exception.
    ORA-04030: out of process memory when trying to allocate 65584 bytes
    (session heap,kuxLpxAlloc)
    ORA-06512: at "SYS.KUPW$WORKER", line 1714
    ORA-06512: at line 2We have to search the metalink note (ORA-4030) and according to that metalink note we have to check
    - Oracle user's ulimit (make all parameter unlimited , but problem is not solved)
    - SGA and PGA size (here sga is 32 GB , pga 7gb)
    - OS cpu and memoru usage are not so high @ that moment
    tuning the above three things , I cannot solve the issue ... would anybody plz help me .....to resolve the issue. is it a bug of thie Oracle version ?
    plz help ... ...
    Edited by: shipon_97 on Jul 20, 2010 1:04 PM

    I have exactly same issue on Linux platform. My db version is also 11.2.0.1. Can you let me know how do i check the soft and hard limits. I checked ulimit and it shows as below:
    address space limit (kbytes) (-M) unlimited
    core file size (blocks) (-c) 0
    cpu time (seconds) (-t) unlimited
    data size (kbytes) (-d) unlimited
    file size (blocks) (-f) unlimited
    locks (-L) unlimited
    locked address space (kbytes) (-l) 32
    nice (-e) 0
    nofile (-n) 65536
    nproc (-u) 16384
    pipe buffer size (bytes) (-p) 4096
    resident set size (kbytes) (-m) unlimited
    rtprio (-r) 0
    socket buffer size (bytes) (-b) 4096
    stack size (kbytes) (-s) 10240
    threads (-T) not supported
    process size (kbytes) (-v) unlimited
    Please suggest,

  • Issue with Teradata access from Business Objects AIX Machine

    Hi,
    I am using BO  XI.31 which is installed on AIX 5.3 machine. I have installed Teradata driver on the machine and I have created the require ODBC.ini entry to point Teradata database. While refreshing the report I am getting below error message.
    A database error occured .The database error test is (CS) "DBDriver failed ot load: /BOBJ/xi_3.1...Connectionserver/libdbd_tdodbc.so
    0509-022 Cannot load module/BOBJ/xi_3.1....ConnectionServer/libdbd_tdodbc.so
    0509-150 Dependent module libodbc.a(odbc.so) Could not be loaded.
    0509-022 Cannot load module libodbc.a(odbc.so)
    0509-022 System error:A file or directory in the path name does not exist.
    Any body know what are the steps require to access teradata database from AIX box

    Hi Jacks,
    Following information might help you to resolve the issue.
    This is caused by a wrong HOME environment variable of the user that starts the BO processes.
    Resolution
    Check the correct path of your BO 3.1 installation and export it as HOME environment variable:
    Example:
    BO 3.1 installation path: /home/<bouser>/bo3.1/Enterprise12.0../...
    Type in the command line:
    export HOME=/home/<bouser>/boversion
    You can also change this environment variable permanently if you edit the .profile file of the BO user (home/<username>/.profile), adding the above line into the file, then source it again with:
    . .profile
    or with a logoff/logon of the session.
    Check if the path of your HOME is correct with:
    env | grep HOME
    Now you can run the installation setup without any error.
    Regards,
    Sarbhjeet Kaur

  • Issues after installing apps r12.1.1 on IBM AIX server 6.x

    hi ,
    I have done the single node Apps r12.1.1 installation on IBM AIX 6.x server. I am requesting someone to please help me with the following issues.
    1. The installation has happened on a single node..single dir structure /U02/….. At present, I am able to open all HTML pages, but not any form. While opening forms, its giving following error.
    FRM 92101: There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web server log files for details.
    2. At present commands and TOPs don’t work (e.g. sqlplus, or $APPL_TOP etc). How they can be setup so that the commands can be run anywhere and cd $XXX_TOP commands can be issued to move to respective TOPs.
    3. I ran the adautocfg.sh after implementation. While running, I saw that it configured the XXX_TOPs. But, unable to use them. What else is required to be run? Did I miss out on any other files?
    Thanks in advance.
    Regards,
    Vamshi

    Hi,
    1. The installation has happened on a single node..single dir structure /U02/….. At present, I am able to open all HTML pages, but not any form. While opening forms, its giving following error.
    FRM 92101: There was a failure in the forms server during startup. This could happen due to invalid configuration.
    Please look into the web server log files for details.This is a generic error, so please check the application.log file for details about the error.
    2. At present commands and TOPs don’t work (e.g. sqlplus, or $APPL_TOP etc). How they can be setup so that the commands can be run anywhere and cd $XXX_TOP commands can be issued to move to respective TOPs.You need to source the application/database env file, $APPL_TOP/APPS<CONTEXT_NAME>.env and $ORACLE_HOME/<CONTEXT_NAME>.env
    Please see "Oracle Applications Maintenance Utilities" for details -- Page 1-11/1-12
    Oracle Applications Maintenance Utilities
    http://download.oracle.com/docs/cd/B53825_03/current/acrobat/121admu.pdf
    3. I ran the adautocfg.sh after implementation. While running, I saw that it configured the XXX_TOPs. But, unable to use them. What else is required to be run? Did I miss out on any other files?You need to source the application env file again to set this custom top.
    Please see old threads which discuss the same topic.
    How to create a custom top in R12
    How to create a custom top in R12
    CUSTOM_TOP
    http://forums.oracle.com/forums/search.jspa?threadID=&q=CUSTOM_TOP&objID=c3&dateRange=all&userID=&numResults=15&rankBy=10001
    Thanks,
    Hussein

Maybe you are looking for

  • Best LCD Monitor/TV tuner/DVD for use with MacBook

    I am looking to expand my desktop with a 2nd monitor. As a bonus I would like the monitor to have a built in TV tuner NTSC and DVD player if possible. Specifically what do I need to worry about for the computer desktop resolution/pixel count etc so t

  • Color seems locked- can't change background color...

    and many color, enhance options are blocked out. Any idea how I can fix it?

  • Getting Day from the date :

    Hi, I want to get the day(Monday ,tuesday.. like that) and the input parameter for that function is the date let say 02/14/2006.

  • My Macbook Pro W/ Retina Display 13" Heats up to 180F

    I bought my Macbook Pro with Retina Display about last May (2013) and I never had any problems with heat until I began gaming (Playing League of Legends). I just want to know if that is normal and if its not, what should I do to fix it. When I finish

  • Powerbook shuts down when running on battery

    I got this problem only lately int these lasts months... my powerbook g4 15" is almost 3 years old. I first noticed that the battery endurance is more and more reducing...it lasts more or less 20 minutes from when I unplug it form the power-net. And