Problem in OC4J_BI_form in Oracle 10g

We are supporting an Oracle Cartridge Application. Through PL/SQL we are connection to oracle reports. Daily at some point of time the report hangs.
The following error is present in log.
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] (10060)A connection attempt failed because the connected party did not properly respond after a period of time, or established connection failed because connected host has failed to respond: MOD_OC4J_0038: Receiving data from oc4j exceeded the configured "Timeout" value and the error code is 10060.
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] MOD_OC4J_0054: Failed to call network routine to receive an ajp13 message from oc4j.
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] MOD_OC4J_0033: Failed to receive an ajp13 message from oc4j.
[Thu Aug 09 08:10:38 2007] [warn] [client ] [ecid: 4986121983710,1] MOD_OC4J_0078: Network connection errors happened to host: va08nt010 and port: 3302 while receiving the first response from oc4j. This request is recoverable.
[Thu Aug 09 08:10:38 2007] [warn] [client ] [ecid: 4986121983710,1] MOD_OC4J_0184: Failed to find an oc4j process for destination: OC4J_Portal
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] MOD_OC4J_0145: There is no oc4j process (for destination: OC4J_Portal) available to service request.
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] MOD_OC4J_0119: Failed to get an oc4j process for destination: OC4J_Portal
[Thu Aug 09 08:10:38 2007] [error] [client ] [ecid: 4986121983710,1] MOD_OC4J_0013: Failed to call destination: OC4J_Portal's service() to service the request.
If we restart the service OC4J_BI_Forms in Oracle Enterprise manager, the report is working fine.
To find the root cause solution for the above mentioned problem, we have tried out the following. But still we are facing the same issue daily.
     Checked whether there are any tablelocks, while the report hangs up, no locks are available for the table used by the report.     Increased the TIMEOUT period in the following config file.
     - httpd.conf
     # Timeout: The number of seconds before receives and sends time out.
     Timeout 3000
     -mod_oc4j.conf
     Oc4jConnTimeout 3600
When the report hangs mod_oc4j Module metrics shows Active request > 10.. but once restarted i will be mostly zero..
We dont know how to proceed on this issue.. can anyone help us..

You are posting the Oracle Business Intelligence Applications Forum on the Oracle Application Server Forum

Similar Messages

  • Problem in installation of Oracle 10g database on RHEL 6

    I am facing the problem when I am trying to install Oracle 10g database on Red Hat 6. When ./runinstaller is run, the message seems to be if I remember correctly is like ‘……………bad ELF interpreter’. But, the same source seems to be installing correctly in Red Hat 5.
    Please, help in solving the doubt.
    Regards

    Hi;
    1. Please make search before posting your issue here. Similar issue mention here million time
    2. Please use certified platform such as *nix 5.x .
    3. For can check certification from metalink or from below note:
    Oracle Database on Unix AIX,HP-UX,Linux,Mac OS X,Solaris,Tru64 Unix Operating Systems Installation and Configuration Requirements Quick Reference (8.0.5 to 11.2) [ID 169706.1]
    PS:Please dont forget to change thread status to answered if it possible when u belive your thread has been answered, it pretend to lose time of other forums user while they are searching open question which is not answered,thanks for understanding
    Regard
    Helios

  • Urgent: problem running reports in Oracle 10g application server

    Hi all,
    our problem is that we deployed a jsp report as Ear file in Oracle 10g application server in infrastructure node.deployment says successfull.when we try to run that report it says 401 unauthorised.while sending request we are passing the database username,password &sid is this correct or any configuration setting to be done to make it run.
    one morething normal jsp works fine.when we run reports jsp it gives the above mentioned 401 error.

    hello,
    when you deploy reports JSPs they still require the reports specific componentes (e.g. TLD file, classes, ...) etc be available. i doubt that's the case in your ear file.
    thanks,
    ph.

  • Problem to connect between Oracle 10g xe and VB2010 at Vista sp2

    Introduction
    Hi guys, good day... NEED RESCUE!! SOS!! Hmm.. i have trouble been 1 weeks trying connect between Oracle 10g xe and VB2010 on window vista sp2. Actaully im very new at Oracle 10g xe and VB2010 but i got a project is going to build up system database and i figure out Oracle 10g xe and VB2010 can use free so i just chows these appication to be my project. I been search around internet and there is several things i was found about the connection but i has try and tried still it wont work out.
    Things i found and learned
    Oracle
    1. I have download Oracle 10g XE and installed in my windows vista sp2.
    2. I notice the Oracle Developer Tools is needed for VB2010 (To add reference 'Oracle.DataAccess'). So i was downloaded ODT11beta and installed
    3. I also edit TNSNAMES to following below:
    OraDb =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = shin-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    4. My sqlnet like following below:
    SQLNET.AUTHENTICATION_SERVICES = (NTS)
    NAMES.DIRECTORY_PATH= (TNSNAMES, EZCONNECT)
    5.I have try tnsping OraDB and its works.
    6. I monitoring task manager and OracleServicesXE is running.
    7. ora_dba is added in Group.
    Problem in SQLPLUS
    When i try connect SQLPLUS in cmd i get ERROR: ORA-12560: TNS:protocol adapter error.
    i . In cmd i type sqlplus and enter then i been ask for username and password.
    ii. After i insert my username and password and enter then i get the error of ORA-12560.
    Visual Basic 2010
    1. First i created my project, drawing label and button for test connection.
    2. Then, i add reference Oracle.DataAccess into my project.
    3. I type following script into my vb form:
    Imports System.Data
    Imports Oracle.DataAccess.Client
    Imports Oracle.DataAccess.Types
    Public Class Logon
    Private Sub cmdLogon_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdLogon.Click
    Dim oradb As String = "Data Source = OraDb; User Id = system; Password = shin;"
    Dim conn As New OracleConnection(oradb)
    conn.Open()
    Dim cmd As New OracleCommand
    cmd.Connection = conn
    cmd.CommandText = "select SName from Staff where SName = shin"
    cmd.CommandType = CommandType.Text
    Dim dr As OracleDataReader = cmd.ExecuteReader()
    dr.Read()
    lblOra.Text = dr.Item("SName")
    conn.Dispose()
    End Sub
    End Class
    Problem in VB2010
    When i run my project and press the button i get error message ORA-12514: TNS:could not resolve the connect identifier specified at conn.Open()
    Extra Question*
    1. Im notice in my netbook xp home sp2, before i install ODT11beta my sqlplus look fine thought cmd but after i installed ODT11beta its same problem with my Vista sp2 now. Get error ORA-12560: TNS:protocol adapter error :( I tried uninstall ODT11beta again and restart its work fine again. Which i really dun understand. Izzit the version ODT11 is not suitable for 10g xe? And i dunno this problem is related with my connection between oracle 10g xe and vb2010 or not. So confuse@@
    2. I wish to know more about connect between Oracle and VB, is there still a things i miss?(I mean steps or configuration that should i done)
    3. Or i just lower my VB version could make more easy? If yes, what version VB should i use that could work out with oracle 10g xe?
    4. Sorry for too bad my english but i really wish somebody could help me. Please try to understand my written or you could ask me mean if dont understand. Im stuck!! Stuck feel not really that good.....
    Edited by: user9173084 on Jul 19, 2010 3:34 AM

    Huhu..
    Yo, henry
    I thought the OraDb is just a name for entry but im not sure it is a service. I was refer http://www.oracle.com/technology/pub/articles/cook-vs08.html at topic Connection Strings and Objects.
    Here is my lsnrctl service
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC_FOR_XE)))
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOW has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOW has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0
    LOCAL SERVER
    Service "XEXDB" has 1 instance(s).
    Instance "xe", status READY has 1 handler(s) for this service...
    Handler(s):
    "D000" established:0 refused:0 state:ready
    DISPATCHER <machine: SHIN-PC, pid: 1932>
    (ADDRESS=(PROTOCOL=tcp)(HOST=shin-pc)(PORT=49158))
    Service "XE_XPT" has 1 instance(s).
    Instance "xe", status READY has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    Service "xe" has 1 instance(s).
    Instance "xe", status READY has 1 handler(s) for this service...
    Handler(s):
    "DEDICATED" established:0 refused:0 state:ready
    LOCAL SERVER
    The command completed successfully
    Izzit ok? I notice there is no listed OraDb. but tnsping OraDb seem fine.
    Actually there is somethings as a newbie i wondering long time alreadly ><
    1. The origin of tnsname.ora is no OraDb or ORCL but i just simple add it by open tnsname.ora with notepad. Im just not sure it is function or not.
    Also please check at my TNSNAME.ORA:
    XE =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = shin-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = XE)
    EXTPROC_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = PLSExtProc)
    (PRESENTATION = RO)
    ORACLR_CONNECTION_DATA =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC_FOR_XE))
    (CONNECT_DATA =
    (SID = CLRExtProc)
    (PRESENTATION = RO)
    OraDb =
    (DESCRIPTION =
    (ADDRESS = (PROTOCOL = TCP)(HOST = shin-PC)(PORT = 1521))
    (CONNECT_DATA =
    (SERVER = DEDICATED)
    (SERVICE_NAME = orcl)
    I got the feeling there is so close~~~!!!

  • Problem in em in Oracle 10g (10.2.0.3.0)

    Hello all,
    I m facing the following problem in oracle 10g (10.2.0.3.0). When I log on to em, database instance is shown inactive(status down). However, checking the local services I realised that instance is up and running. How could i correct that problem so that database status on em web console is shown correctly???
    please your help

    If not on Windows, we have AIX servers overhere and also see a lot of times databases being inaccessible from OEM.
    This is because of a bug in the Agent using a certain perl version, which causes the agent to be inresponsive.
    Check following:
    sqlplus system/<password>@SID
    This check ensures that you mistake the start of a SQLplus connection as SYS to be that the database is running.
    If the above statement connects your database and Listener are up and running.
    Preferably do this check from the server running the OEM.
    If that connection works, bounce the OEM services ( and database ), just to see if it has started correctly.
    Also restart the Oracle Agent on the target server.
    If these checks still show the database as being down ( wait a couple of minutes after the restart to let the agents communicate statuses ) then report back.

  • Problems with the installation Oracle 10g 10202 - Platform x86 - Sol 5.10

    Hi,
    I am trying to install Oracle 10g R10202 in plataform x86 Solaris 5.10. I did all the tasks of preinstallation, and when I execute runInstaller, the following error appears ==>
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 5.10. Actual 5.10
    Passed
    Checking Temp space: must be greater than 250 MB. Actual 7622 MB Passed
    Checking swap space: must be greater than 500 MB. Actual 1761 MB Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 16777216 Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from /opt/tmp/OraInstall2007-08-26_09-18-08PM. Please wait ...warning [../stage/Components/oracle.swd.jre/1.4.2.0.0/1/DataFiles/filegroup2.jar]: 1 extra byte at beginning or within zipfile
    (attempting to process anyway)
    file #0: bad zipfile offset (local header sig): 1
    (attempting to re-compensate)
    error: invalid compressed data to inflate /opt/tmp/OraInstall2007-08-26_09-18-08PM/jre/1.4.2/lib/sparc/libjvm.so
    file #516: bad zipfile offset (local header sig): 23197903
    (attempting to re-compensate)
    Error in writing to directory /opt/tmp/OraInstall2007-08-26_09-18-08PM. Please ensure that this directory is writable and has atleast 69 MB of disk space. Installation cannot continue.
    : Error 0
    Obviously it is not a problem of space in the directory/tmp.
    I have tried other options as ==>
    *-Run runInstaller con el parameter ignoreSysPrereqs
    *-Setting  others variables of environment like,  TMP =/opt/tmp
    and TMPDIR =/opt/tmp.
    But I don't fix the problem.
    Someone has some idea of like solving this bug or problem?
    Thanks in Advance.
    Best Regards.
    NSV

    Error is on small caps but it is straight forward:
    ".. error: invalid compressed data to inflate ..."
    Your oracle media is corrupt. Redownload it and verify the downloaded zip file.
    ~ Madrid

  • Problem faced when installing oracle 10g

    i faced this problem when intalling oracle 10g in windows xp. this dos prompt opens for 5 min. and then it get closed..after tht nuthing happens.
    Starting Oracle Universal Installer...
    Checking installer requirements...
    Checking operating system version: must be 4.0, 5.0, 5.1 or 5.2. Actual 5.1
    Passed
    Checking monitor: must be configured to display at least 256 colors. Actual 4
    294967296 Passed
    All installer requirements met.
    Preparing to launch Oracle Universal Installer from C:\DOCUME~1\ADMINI~1\LOCALS~
    1\Temp\OraInstall2006-09-02_03-43-19AM. Please wait ...

    Check the directory read-write permission and the space on the C:\ Drive C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\OraInstall2006-09-02_03-43-19AM.
    Actually Oracle Installer might be trying to create log file and due to above two reason not able to proceed.

  • Problem Pro*C for Oracle 10g

    Hello,
    I am compiling pro*c code for Oracle 10g, it is successfully compiling for Oracle 9i. But with Oracle 10g libs it's giving problems.
    This following error msg I m getting while compiling
    /application/Build/code/booking/>mk test
    *.cpp: No such file or directory
    make_depend
    `/opt/oracle/10.2.0/lib/libclntsh.so' is up to date.
    cat: cannot open *.u
    proc ireclen=132 lines=yes iname=pcutils.pc oname=~pcutils.c
    Pro*C/C++: Release 10.2.0.2.0 - Production on Sat May 26 07:39:59 2007
    Copyright (c) 1982, 2005, Oracle. All rights reserved.
    System default option values taken from: /opt/oracle/10.2.0/precomp/admin/pcscfg.cfg
    cc -c -DBA_SUN -xCC -I. -I/application/Build/include -I/application/2.6Build/include -I/opt/ba/include - -I/opt/tux80/include ~pcutils.c
    "pcutils.pc", line 58: undefined struct/union member: sqlerrm
    "pcutils.pc", line 58: undefined struct/union member: sqlerrmc
    "pcutils.pc", line 58: warning: left operand of "." must be struct/union object
    "pcutils.pc", line 79: undefined struct/union member: sqlerrm
    "pcutils.pc", line 79: undefined struct/union member: sqlerrmc
    "pcutils.pc", line 79: warning: left operand of "." must be struct/union object
    cc: acomp failed for ~pcutils.c
    *** Error code 2
    make: Fatal error: Command failed for target `pcutils.o'
    Could you please suggest me, what should I do in order to build it.
    Inpreet

    To answer my own question, I'd say it's necessary to install the tarball, NOT the Debian files, for the Enterprise edition (perhaps to Standard is enough?).
    After installation at (for example) /usr/local/oracle, the "proc" precompiler should be at /usr/local/oracle/u01/app/oracle/oracle/product/10.2.0/db_1/bin
    The env.variable ORACLE_HOME should be set,
    export ORACLE_HOME=/usr/local/oracle/u01/app/oracle/oracle/product/10.2.0/db_1

  • Problem Connecting to my Oracle 10g

    I have been using Oracle 10g for about an year on my PC and just a couple of days back theres been this problem that wont let me connect to any of my local DBs.. neither can i start sqlplus in prompt, i am using Windows XP, when i try to connect to any local DB it says "Service Unavailable", and the connection times out if a rmote connection is attempted, i know i must have messed up some service or folder during some other software installation or un-installation or something like that, while trying to use the command sqlplus in prompt it gives the following error:-
    Error 6 initializing SQLPlus*
    Message file sp1<lang>.msb not found
    SP2-0750 : You may need to set ORACLE_HOME to your oracle software directory
    The thing is i have checked all my environment variables and they are all there and correct...
    There are other forum threads on the same topics but none gives a solution.. the only solution i got is re-installation of Oracle and registry cleaning.. and i wouldnt wanna do that..
    I have also tried connecting after starting the stopped services including OracleXEClrAgent, OracleTNSListener and ORACLEMTSRRecoveryService but still wouldnt work.. and evertime i try to start the service OracleXETNSListener using the net start command, it gives the message the OracleXETNSListener service could not be started, The service did report an error..
    Can anyone help??
    Edited by: user9038492 on Nov 26, 2010 9:19 PM
    Edited by: user9038492 on Nov 26, 2010 9:20 PM
    Edited by: user9038492 on Nov 26, 2010 9:22 PM
    Edited by: user9038492 on Nov 26, 2010 9:24 PM

    Response to LSNRCTL is :-
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 27-NOV-2010 10:33:23
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=NETWORK, facility=TNSTNS-125
    57: Message 12557 not found; No message file for product=NETWORK, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facili
    ty=TNS
    TNS-00527: Message 527 not found; No message file for product=NETWORK, facilit
    y=TNS
    Response to set is :-
    ALLUSERSPROFILE=C:\Documents and Settings\All Users
    APPDATA=C:\Documents and Settings\User1\Application Data
    CATALINA_HOME=F:\Dev\java setups\ExadelStudioPro-4.0.0\tomcat
    CLIENTNAME=Console
    CommonProgramFiles=C:\Program Files\Common Files
    COMPUTERNAME=AWAIS
    ComSpec=C:\WINDOWS\system32\cmd.exe
    FP_NO_HOST_CHECK=NO
    GDAL_DATA=C:\Program Files\PFPS\system\gdal_data
    GEOTIFF_CSV=C:\Program Files\PFPS\system\gdal_data
    GEOTRANS_DATA=C:\Documents and Settings\All Users\Application Data\PFPS\data\Geo
    Trans
    HOMEDRIVE=C:
    HOMEPATH=\Documents and Settings\User1
    JAVA_HOME=C:\Program Files\Java\jdk1.6.0_21
    LOGONSERVER=\\AWAIS
    NUMBER_OF_PROCESSORS=2
    ODI_JAVA_HOME=D:\OraHome_1\jre\1.4.2
    ORACLE_HOME=C:\oraclexe\app\oracle\product\10.2.0
    OS=Windows_NT
    Path=C:\oraclexe\app\oracle\product\10.2.0\server\bin;C:\WINDOWS\system32;C:\WIN
    DOWS;C:\WINDOWS\System32\Wbem;C:\PROGRA~1\COMMON~1\LEADTO~1\Help;C:\PROGRA~1\LEA
    DTE~1\LEADTO~1.5\Bin\CDLL\Win32;C:\Program Files\Microsoft SQL Server\100\Tools\
    Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\;C:\Program Files\PFPS\
    system;
    PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    PROCESSOR_ARCHITECTURE=x86
    PROCESSOR_IDENTIFIER=x86 Family 6 Model 15 Stepping 13, GenuineIntel
    PROCESSOR_LEVEL=6
    PROCESSOR_REVISION=0f0d
    ProgramFiles=C:\Program Files
    PROJ_LIB=C:\Program Files\PFPS\system\proj_lib
    PROMPT=$P$G
    SESSIONNAME=Console
    SystemDrive=C:
    SystemRoot=C:\WINDOWS
    TEMP=C:\DOCUME~1\User1\LOCALS~1\Temp
    TMP=C:\WINDOWS\TEMP
    USERDOMAIN=AWAIS
    USERNAME=User1
    USERPROFILE=C:\Documents and Settings\User1
    VLC_HOME=C:\Program Files\VideoLAN\VLC\
    windir=C:\WINDOWS
    and finally response to lsnrctl service is :-
    LSNRCTL for 32-bit Windows: Version 10.2.0.1.0 - Production on 27-NOV-2010 10:40
    :29
    Copyright (c) 1991, 2005, Oracle. All rights reserved.
    Message 1053 not found; No message file for product=NETWORK, facility=TNSTNS-125
    57: Message 12557 not found; No message file for product=NETWORK, facility=TNS
    TNS-12560: Message 12560 not found; No message file for product=NETWORK, facili
    ty=TNS
    TNS-00527: Message 527 not found; No message file for product=NETWORK, facilit
    y=TNS

  • SAP ECC6.0 Installation problem as abap on oracle 10g

    Hi guru's
    i am facing following error during installation of SAP ECC6.0
    development server with oracle 10g (10.1) database & windows 2003 server OS.
    During the installation step "create database statistics" following error occured.
    ERROR 2009-03-07 03:23:40
    CJS-30023  Process call 'D:\usr\sap\DEV\SYS\exe\uc\NTI386\brconnect.exe -u / -c -o summary -f stats -o SAPSR3 -p 2' exits with error code 5. For details see log file(s) brconnect.log.
    ERROR 2009-03-07 03:23:40
    FCO-00011  The step createOracleStatistics with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CreateDBandLoad|ind|ind|ind|ind|10|0|NW_Postload|ind|ind|ind|ind|10|0|NW_Postload_ORA|ind|ind|ind|ind|0|0|NW_ORA_Statistics_Create|ind|ind|ind|ind|0|0|createOracleStatistics was executed with status ERROR .
    brconnect.log
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVA~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVAT~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVAT~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVD~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVD~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVDATA~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVDATA~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVDT~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVDT~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVF~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVF~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVFT~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVFT~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0301E SQL error -1001 in thread 2 at location stats_ind_collect-3, SQL statement:
    'BEGIN DBMS_STATS.GATHER_INDEX_STATS (OWNNAME => '"SAPSR3"', INDNAME => '"TCNVG~0"', ESTIMATE_PERCENT => 1, DEGREE => NULL, NO_INVALIDATE => FALSE); END;'
    ORA-01001: invalid cursor
    ORA-06512: at "SYS.DBMS_STATS", line 10621
    ORA-06512: at "SYS.DBMS_STATS", line 10645
    ORA-06512: at line 1
    BR0886E Checking/collecting statistics failed for index SAPSR3.TCNVG~0
    BR0280I BRCONNECT thread 2: time stamp: 2009-03-07 03.23.39
    BR0844E 100 errors occurred in thread 2 - terminating processing of the thread...
    BR0280I BRCONNECT time stamp: 2009-03-07 03.23.39
    BR0848I Thread 2 finished with return code -1
    BR0280I BRCONNECT time stamp: 2009-03-07 03.23.39
    BR0879I Statistics checked for 22 tables
    BR0878I Number of tables selected to collect statistics after check: 0
    BR0880I Statistics collected for 0/14 tables/indexes
    BR1308E Collection of statistics failed for 17956/17936 tables/indexes
    BR0806I End of BRCONNECT processing: cepzzztx.sta 2009-03-07 03.23.39
    BR0280I BRCONNECT time stamp: 2009-03-07 03.23.40
    BR0804I BRCONNECT terminated with errors
    Regards
    Manvir Bhatia

    Hi,
    Your DB is running on 10.1, it is not recommended. Update the patch to 10.2.0.2 and apply the interim patches. Then retry the installation.
    Mahesh

  • Instant Client Connection Problem - Excel 2007 to Oracle 10g

    Dear users,
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit) on Windows Vista Enterprise 64-bit. I want to connect to an Oracle 10g database through our local network using ODBC. I need to fetch some data once into an excel sheet.
    There are no firewall issues or connection issues between my current machine , as I can connect from my machine, using SQL developer as a local client to the Oracle Database which is on another machine on the network.
    I tried to make an ODBC connection but Oracle is not listed as a driver.
    I beleive ODBC is the best way to do this, but please correct me if I am wrong.
    It is an Oracle 10G database.
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip a
    I also downloaded the extra ODBC components: *Instant Client Package - ODBC: Additional libraries for enabling ODBC applications.
    I unzipped both in a folder called C:\instantclient_11_2
    The system path included that. I checked after rebooting.
    I placed my tnsnames.ora (which I copied from the server) in that folder.
    I got ti from the server : D:\Oracle\Ora10gR2DB\network\admin\tnsnames.ora
    I ran the exe "odbc_install" and It told me the ODBC was intalled successfully.
    When I went the control panel, administrative tools, ODBC
    In the user dsn tab
    I added a new entry. I chose the Oracle driver (previously it was not in the list)
    Used the following values
    Data Source name: OracleL
    Description 123
    TNS Service NAme: I chose fro ma drop down menu our prod environment. (There are two entries with the production name, one in caps and the other in lowercase)
    Userid: my username
    I tried Test the connection and got this:
    Unable to Connect
    SQlState=S1000
    [Oracle][ODBC][Ora]ORA-12545: Connect failed because target host or object does not exist
    Any suggestions please.
    Thnaks in advance.
    A.
    Thanks for all your help, in advance.
    Akajohn.
    Edited by: user12282521 on May 19, 2011 1:47 PM

    user12282521 wrote:
    I would some help to connect Excel to Oracle.
    I am using Excel 2007 (32-bit)
    I downloaded instantclient-basiclite-windows.x64-11.2.0.2.0.zip aIf Excel is 32-bit (2007 is) and Oracle client libraries are 64-bit, it won't work. 32-bit needs 32-bit.
    You probably should remove current ic packages and get the 32-bit ones instead.
    Start over.
    When I went the control panel, administrative tools, ODBCOn Windows x64, to manage 32-bit ODBC DSNs/drivers one needs to run the tool from Windows\SysWoW64\odbcad32.exe.

  • This problem appears while installing oracle 10g on enterprise linux

    Hi All,
    While installing oracle 10g on enterprise linux 5 this message apear:
    http://img134.imageshack.us/my.php?image=problemqy2.png
    More Info:
    Oracle 10g supports redhat 4 and Enterprise Linux is redhat 5 so I changed the redhat-release to 4 to countinue setup but the above error appears, also I tried this configuration on SuSE 10 I changed the SuSE-release to 9 and went good.

    The packeges are already installedIf you execute runInstaller again is the error message the same as before?
    If yes can you post output for this command?
    rpm -qa --qf '%{name}-%{version}-%{release}.%{arch}\n'|grep -i 'libxp'

  • Problem in connecting to oracle 10g!!

    hi all,
    we have installed the oracle 10g server free download on one of the computer of our lan, and trying to connect from the oracle 10g client from other machine, but its giving time out error , can any one pls give me suggestinos why its giving this error. My tns file is:
    demo =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST = 10.11.5.43)(PORT = 1521))
    (CONNECT_DATA =
    (SERVICE_NAME = demo.com)
    )

    Please post the complete error stack you get, the content of Client's sqlnet.ora, and the result, on the server, of
    $ lsnrctl services

  • Problem Running rpeports in oracle 10G

    when calling a report from my application form I get the following error:
    REP-52266: فشل خادم Reports الجاري تشغيله rep_pc1 في البدء.oracle.reports.RWException: IDL:oracle/reports/RWException:1.0
    Console has the following lines also:
    C:\Documents and Settings\Administrator\Desktop>F:\DevSuiteHome_1\jdk\bin\java
    -Doracle.security.jazn.config=F:\DevSuiteHome_1\j2ee\DevSuite\config\jazn.xml -D
    oracle.home=F:\DevSuiteHome_1 -DORACLE_HOME=F:\DevSuiteHome_1 -jar F:\DevSuiteHo
    me_1\j2ee\home\oc4j.jar -userThreads -config F:\DevSuiteHome_1\j2ee\DevSuite\con
    fig\server.xml
    10/01/18 10:36:38 Oracle Application Server Containers for J2EE 10g (10.1.2.0.2)
    initialized
    10/01/18 10:37:43 FormsServlet init():
    configFileName: F:\DevSuiteHome_1/forms/server/formsweb.cfg
    testMode: false
    10/01/18 10:37:51 ListenerServlet init()
    10/01/18 11:30:09 Not able to load oracle.reports.util.EnvironmentGlobal class
    10/01/18 11:30:09 Using oracle.reports.util.Environment class
    10/01/18 11:30:13 REP-50139: ط╟ وع▀غ ═╨▌ ╟طعط▌ F:\DevSuiteHome_1\reports\server\
    rep_pc1.dat
    It is clear that oracle not able to load oracle.reports.util.enviromentGlobal class.
    I don't know how to solve the problem.
    Any one could help please??

    When writing the following :
    http://pc1:8889/reports/rwservlet/getserverinfo?server=rep_pc1
    I got the following error:
    REP-51002:failed to connect to server reports rep_pc1
    Here is what I have in rwserver.trc log file:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ALLUSERSPROFILE=C:\Documents and Settings\All Users
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): APPDATA=C:\Documents and Settings\Administrator\Application Data
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): CLIENTNAME=Console
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): CommonProgramFiles=C:\Program Files\Common Files
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): COMPUTERNAME=PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ComSpec=C:\WINDOWS\system32\cmd.exe
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): FP_NO_HOST_CHECK=NO
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): HOMEDRIVE=C:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): HOMEPATH=\Documents and Settings\Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): LOGONSERVER=\\PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): NUMBER_OF_PROCESSORS=2
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): OS=Windows_NT
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): Path=F:\DevSuiteHome_1\jdk\jre\bin\classic;F:\DevSuiteHome_1\jdk\jre\bin;F:\DevSuiteHome_1\jdk\jre\bin\client;F:\DevSuiteHome_1\jlib;F:\DevSuiteHome_1\bin;F:\DevSuiteHome_1\jre\1.4.2\bin\client;F:\DevSuiteHome_1\jre\1.4.2\bin;F:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PATHEXT=.COM;.EXE;.BAT;.CMD;.VBS;.VBE;.JS;.JSE;.WSF;.WSH
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PERL5LIB=F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib;F:\oracle\product\10.2.0\db_1\perl\5.8.3\lib\MSWin32-x86;F:\oracle\product\10.2.0\db_1\perl\site\5.8.3;F:\oracle\product\10.2.0\db_1\perl\site\5.8.3\lib;F:\oracle\product\10.2.0\db_1\sysman\admin\scripts;
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_ARCHITECTURE=x86
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_IDENTIFIER=x86 Family 6 Model 23 Stepping 10, GenuineIntel
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_LEVEL=6
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): PROCESSOR_REVISION=170a
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): ProgramFiles=C:\Program Files
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SESSIONNAME=Console
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SystemDrive=C:
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): SystemRoot=C:\WINDOWS
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): TEMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERDOMAIN=PC1
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERNAME=Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): USERPROFILE=C:\Documents and Settings\Administrator
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): windir=C:\WINDOWS
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): NLS_LANG=ARABIC_EGYPT.AR8MSWIN1256
    [2010/1/20 3:17:13:328] Debug 50103 (EnvironmentUtility:getEnvironment): REPORTS_TMP=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:13:343] Info 56025 (RWServer:startServer): جاري بدأ تشغيل Reports Server
    [2010/1/20 3:17:13:593] Info 65000 (Multicast:init): تمت تهيئة قناة الاتصالات
    [2010/1/20 3:17:13:593] Debug 50103 (Multicast:registerReceiver): Packet handler registered
    [2010/1/20 3:17:13:593] Info 50103 (ServerPacketHandler:start): ServerPacketHandler started successfully
    [2010/1/20 3:17:16:796] Info 56023 (ServerImpl:ServerImpl): Idle thread has been started
    [2010/1/20 3:17:16:796] Info 50103 (RWServer:startServer): Using multicast mechanism
    [2010/1/20 3:17:16:828] Info 56020 (EngineManager:spawnEngine): Launching engine rwEng-0
    [2010/1/20 3:17:17:0] Info 50103 (RWLocaleUtility:RWLocaleUtility): Using oracle.i18n.util.LocaleMapper class
    [2010/1/20 3:17:17:15] Debug 50103 (EngineManager:spawnEngine): Start engine command line = F:\DevSuiteHome_1\jdk\jre\bin\javaw -server -cp "F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar" -Duser.language=ar -Duser.region=EG -Xmx256M oracle.reports.engine.RWEngine name=rwEng-0 server=rep_pc1 ORACLE_HOME=F:\DevSuiteHome_1 engineimplclass=oracle.reports.engine.EngineImpl traceopts=trace_all tracefile=F:\DevSuiteHome_1\reports\logs\rep_pc1\rwEng-0.trc tracemode=trace_replace cacheDir=F:\DevSuiteHome_1\reports\cache server_ior=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp_18071221
    [2010/1/20 3:17:17:15] Info 56021 (EngineManager:spawnEngine): Engine rwEng-0 has been launched
    [2010/1/20 3:17:17:15] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Initial
    [2010/1/20 3:17:17:15] Info 56020 (EngineManager:spawnEngine): Launching engine rwURLEng-0
    [2010/1/20 3:17:17:15] Debug 50103 (EngineManager:spawnEngine): Start engine command line = F:\DevSuiteHome_1\jdk\jre\bin\javaw -server -cp "F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar" -Duser.language=ar -Duser.region=EG -Xmx256M oracle.reports.engine.RWEngine name=rwURLEng-0 server=rep_pc1 ORACLE_HOME=F:\DevSuiteHome_1 engineimplclass=oracle.reports.urlengine.URLEngineImpl traceopts=trace_all tracefile=F:\DevSuiteHome_1\reports\logs\rep_pc1\rwURLEng-0.trc tracemode=trace_replace cacheDir=F:\DevSuiteHome_1\reports\cache server_ior=C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp\tmp_20983130
    [2010/1/20 3:17:17:15] Info 56021 (EngineManager:spawnEngine): Engine rwURLEng-0 has been launched
    [2010/1/20 3:17:17:15] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Initial
    [2010/1/20 3:17:17:15] Debug 50103 (JobStore:writePersistFile): Purge persistent file
    [2010/1/20 3:17:17:46] Debug 50103 (JobStore:writePersistFile): Purge persistent file done
    [2010/1/20 3:17:22:187] Warning 50103 (EngineManager:registerEngine): REP-55103: API URLEngine:getEngineEnvsغير قابل للتطبيق على مشغل عنوان URL
    [2010/1/20 3:17:22:187] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwURLEng-0
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): PATH = F:\DevSuiteHome_1\jdk\jre\bin\classic;F:\DevSuiteHome_1\jdk\jre\bin;F:\DevSuiteHome_1\jdk\jre\bin\client;F:\DevSuiteHome_1\jlib;F:\DevSuiteHome_1\bin;F:\DevSuiteHome_1\jre\1.4.2\bin\client;F:\DevSuiteHome_1\jre\1.4.2\bin;F:\oracle\product\10.2.0\db_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Microsoft SQL Server\100\Tools\Binn\;C:\Program Files\Microsoft SQL Server\100\DTS\Binn\
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): DISPLAY =
    [2010/1/20 3:17:23:687] Debug 50103 (EngineManager:registerEngine): LD_LIBRARY_PATH =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): ORACLE_HOME = F:\DevSuiteHome_1
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): TNS_ADMIN =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): NLS_LANG = ARABIC_EGYPT.AR8MSWIN1256
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): USER_NLS_LANG =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): RW = F:\DevSuiteHome_1\reports
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_PATH = F:\DevSuiteHome_1\repadm61\srw;F:\DevSuiteHome_1\cgenr61\admin\crretc;F:\DevSuiteHome_1\cgenr61\admin;F:\DevSuiteHome_1\reports\templates;F:\DevSuiteHome_1\reports\samples\demo;F:\DevSuiteHome_1\reports\integ;F:\DevSuiteHome_1\reports\printers;F:\DevSuiteHome_1\reports;e:\GL
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_TMP = C:\DOCUME~1\ADMINI~1\LOCALS~1\Temp
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): REPORTS_TAGLIB_URI = /WEB-INF/lib/reports_tld.jar
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): java.class.path = F:\DevSuiteHome_1\j2ee\home\lib\ojsp.jar;F:\DevSuiteHome_1\reports\jlib\rwrun.jar;F:\DevSuiteHome_1\jlib\zrclient.jar
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): sourceDir =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): tempDir =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): useDataCache =
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:registerEngine): ignoreDataParameter =
    [2010/1/20 3:17:23:734] Info 56026 (EngineManager:registerEngine): Reports Server started up engine rwEng-0
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:updateEngineState): Engine rwURLEng-0 status is 1
    [2010/1/20 3:17:23:734] State 56004 (EngineInfo:setState): Engine rwURLEng-0 state is: Ready
    [2010/1/20 3:17:23:734] State 56012 (IdleThread:run): Reports Server جاهز
    [2010/1/20 3:17:23:734] Debug 50103 (EngineManager:updateEngineState): Engine rwEng-0 status is 1
    [2010/1/20 3:17:23:734] State 56004 (EngineInfo:setState): Engine rwEng-0 state is: Ready

  • "Problem with links in Oracle 10g Express Edition Application Interface"

    Hi.
    Under Object_Interface>Browse>Procedure the "edit" and "compile" links are not working.Also I am unable to see my code when I click on one of the procedures. Kindly help me out.
    Thanks & Regards
    Sri

    My laptop didn't start this morning. Can you help me out?
    (Go to the Express Edition forum at Oracle Database Express Edition (XE) and give them some hints about what the problem is. )
    At the very least you will need to tell people: operating system, browser, whether you have Firewall turned on, whether you are using anti0virus, whether yo have upgraded the Application Express interface.
    You can volunteer that information, or you can wait until people ask for it, but you will need to provide that information. And if you force people to ask - it's quite likely they will get bored with your problem.

Maybe you are looking for

  • Move a image file from one drive to another drive in Presentaion Server

    Hi, My business requirement is to move a image file which is in C:\ drive to another Drive ( Common Drive ). So I  need to that through programming. Kindly help me in this regard. Thanks Arbind

  • How to include SAP login link in the workflow notification email ?

    Hi, How to provide a link in notification email triggered thru workflow to outlook   ?? This link should take the user to correct SAP system logon screen..... kindly help ! urgent !! thank you R

  • Purchasing group issue

    Hi, I am trying to assign an output type for PO printing to a P.Grp using T.Code MN04.I already assigned it but the output is not getting determined in PO.Where as, if I do the same thing for any other P.Grp. its easily getting determined. The issue

  • Hard currency and foreign exchange valuation

    Dear experts, I have defined INR as my company code currency (10) and USD as hard currency (40) when i post any transaction it is reflected in both currencies I post an invoice of Rs 400 when the rate is Rs 40: USD1 Thus in hard currency the USD amou

  • Axis 1.3 webservices exception gives problem

    I am creating webservices using AXIS 1.3. While throw the exception, we are using the "org.w3c.dom.Element" to set the error message into the exception. But when the control reaches the following line of code I am getting NullpointerException. detail