Oracle Explorer in VS2003 not working

I've installed the latest beta and everything "seems" good until I try to add a new connection in the Oracle Explorer.
I select the server from the pulldown, enter my name and password, and hit the "Test Connection" button, and nothing happens. No error. No lock up. Just nothing. If I hit "Save" the same thing happens - nothing. I can "cancel" and try again but with no help.
My PC was previously installed with client for 8i only, and Toad. All of that still works fine.
During this install I created a new home for 10g as suggested.
The first time I went into Visual Studio, the dropdown list had no entries. I figured out that the new 10g home didnt have a tnsnames file, so I copied my tnsnames file from the 8 home ito the 10 home and went back into Visual Studio. This time the dropdown was populated.
So, I'm trying to use it to create a database connection, and it just doesn't do anything. I've gone into the Net Manager and everything works there. My TOAD still works too.
Can anyone help?
Thanks,
Travis

Thanks Jimmy. I sure thought the latest beta was for BOTH 2005 and 2003. But anyway, I've downloaded the older version that says it is only for 2003.
I couldn't find a way to effectively uninstall the 2005 one... I installed the 2003 one in a new Oracle "Home" and I've gotten one step better.....
Now when I try to add a connection, I get an error "Object reference not set to an instance." Not in MY code, mind you, in the code that runs when you just hit the "Test Connection" button.
I'll be searching for answers to THAT....
Ugh...

Similar Messages

  • New HP probook 440 G1 internet explorer ver.11 not working in windows 8.1 64 Bit

    New HP probook 440 G1  internet explorer ver.11  not working in windows 8.1 64 Bit. When I open it closed or crash in a moment.Please help for the issue.
    M Khan

    Hi,
    I suggest you check the fix in this article:
    Fix: Internet Explorer freezes, crashes, hangs in Windows 7 | 8
    http://www.thewindowsclub.com/internet-explorer-freezes-crashes-hangs
    If it doesn't work, please help to post back the IE crash dump file here for our research:
    First enable app crash dump collection by copying following words into notepad, saving it as dump.reg and importing it:
    Windows Registry Editor Version 5.00
    [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\Windows Error Reporting\localdumps\iexplore.EXE]
    "DumpFolder"=hex(2):63,00,3a,00,5c,00,63,00,72,00,61,00,73,00,68,00,64,00,75,\
      00,6d,00,70,00,73,00,00,00
    "DumpCount"=dword:00000010
    "DumpType"=dword:00000001
    "CustomDumpFlags"=dword:00000000
    Then, open IE to repro the issue. If crash issue appeared, please find the crashdump file under c:\.
    To further help you, please upload this file into Skydrive and shared the link here.
    Also, you can try to analyze dump by yourself if you would like to:
    How to analyze app crash dump file:
    http://blogs.technet.com/b/askperf/archive/2007/05/29/basic-debugging-of-an-application-crash.aspx
    Kate Li
    TechNet Community Support

  • Oracle 10g database homepage not working?

    Oracle 10g database homepage not working?
    Hi just i installed oracle database 10g express edition but after the restart the oracle database homepage wont open http://127.0.0.1:8080/apex that link always telling cannot display...
    here i have posted lsnrctl status
    pls help
    thanks in advance
    LSNRCTL> status
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY…
    STATUS of the LISTENER
    Alias LISTENER
    Version TNSLSNR for 32-bit Windows: Version 10.2.0.1.0 - Produ
    ction
    Start Date 25-SEP-2010 17:52:11
    Uptime 0 days 1 hr. 28 min. 24 sec
    Trace Level off
    Security ON: Local OS Authentication
    SNMP OFF
    Default Service XE
    Listener Parameter File C:\oraclexe\app\oracle\product\10.2.0\se…
    dmin\listener.ora
    Listener Log File C:\oraclexe\app\oracle\product\10.2.0\se…
    og\listener.log
    Listening Endpoints Summary...
    (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIP…
    (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOS…
    Services Summary...
    Service "CLRExtProc" has 1 instance(s).
    Instance "CLRExtProc", status UNKNOWN, has 1 handler(s) for this service...
    Service "PLSExtProc" has 1 instance(s).
    Instance "PLSExtProc", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully

    I had a problem of accessing Oracle 10g database homepage. After a couple of days of research and discussions with coworker we found a solution.
    Here is the solution:
    1. Find out your default browser.
    2. Configure your default web browser to connect to the Oracle Database XE Database Home Page as stated
    here:
    http://download.oracle.com/docs/cd/B25329_01/doc/install.102/b25143/toc.htm#CIHHJEHF
    If this does not help de-install Oracle XE and reinstall following the instruction. During re-installation find out your default browser and configure it as instructed.
    I suspect when the default web browser changes the Oracle 10g XE Database Home Page stops working.
    Good luck

  • Oracle date parameter query not working?

    http://stackoverflow.com/questions/14539489/oracle-date-parameter-query-not-working
    Trying to run the below query, but always fails even though the parameter values matches. I'm thinking there is a precision issue for :xRowVersion_prev parameter. I want too keep as much precision as possible.
    Delete
    from CONCURRENCYTESTITEMS
    where ITEMID = :xItemId
    and ROWVERSION = :xRowVersion_prev
    The Oracle Rowversion is a TimestampLTZ and so is the oracle parameter type.
    The same code & query works in Sql Server, but not Oracle.
    Public Function CreateConnection() As IDbConnection
    Dim sl As New SettingsLoader
    Dim cs As String = sl.ObtainConnectionString
    Dim cn As OracleConnection = New OracleConnection(cs)
    cn.Open()
    Return cn
    End Function
    Public Function CreateCommand(connection As IDbConnection) As IDbCommand
    Dim cmd As OracleCommand = DirectCast(connection.CreateCommand, OracleCommand)
    cmd.BindByName = True
    Return cmd
    End Function
    <TestMethod()>
    <TestCategory("Oracle")> _
    Public Sub Test_POC_Delete()
    Dim connection As IDbConnection = CreateConnection()
    Dim rowver As DateTime = DateTime.Now
    Dim id As Decimal
    Using cmd As IDbCommand = CreateCommand(connection)
    cmd.CommandText = "insert into CONCURRENCYTESTITEMS values(SEQ_CONCURRENCYTESTITEMS.nextval,'bla bla bla',:xRowVersion) returning ITEMID into :myOutputParameter"
    Dim p As OracleParameter = New OracleParameter
    p.Direction = ParameterDirection.ReturnValue
    p.DbType = DbType.Decimal
    p.ParameterName = "myOutputParameter"
    cmd.Parameters.Add(p)
    Dim v As OracleParameter = New OracleParameter
    v.Direction = ParameterDirection.Input
    v.OracleDbType = OracleDbType.TimeStampLTZ
    v.ParameterName = "xRowVersion"
    v.Value = rowver
    cmd.Parameters.Add(v)
    cmd.ExecuteNonQuery()
    id = CType(p.Value, Decimal)
    End Using
    Using cmd As IDbCommand = m_DBTypesFactory.CreateCommand(connection)
    cmd.CommandText = " Delete from CONCURRENCYTESTITEMS where ITEMID = :xItemId and ROWVERSION = :xRowVersion_prev"
    Dim p As OracleParameter = New OracleParameter
    p.Direction = ParameterDirection.Input
    p.DbType = DbType.Decimal
    p.ParameterName = "xItemId"
    p.Value = id
    cmd.Parameters.Add(p)
    Dim v As OracleParameter = New OracleParameter
    v.Direction = ParameterDirection.Input
    v.OracleDbType = OracleDbType.TimeStampLTZ
    v.ParameterName = "xRowVersion_prev"
    v.Value = rowver
    v.Precision = 6 '????
    cmd.Parameters.Add(v)
    Dim cnt As Integer = cmd.ExecuteNonQuery()
    If cnt = 0 Then Assert.Fail() 'should delete
    End Using
    connection.Close()
    End Sub
    Schema:
    -- ****** Object: Table SYSTEM.CONCURRENCYTESTITEMS Script Date: 1/26/2013 11:56:50 AM ******
    CREATE TABLE "CONCURRENCYTESTITEMS" (
    "ITEMID" NUMBER(19,0) NOT NULL,
    "NOTES" NCHAR(200) NOT NULL,
    "ROWVERSION" TIMESTAMP(6) WITH LOCAL TIME ZONE NOT NULL)
    STORAGE (
    NEXT 1048576 )
    Sequence:
    -- ****** Object: Sequence SYSTEM.SEQ_CONCURRENCYTESTITEMS Script Date: 1/26/2013 12:12:48 PM ******
    CREATE SEQUENCE "SEQ_CONCURRENCYTESTITEMS"
    START WITH 1
    CACHE 20
    MAXVALUE 9999999999999999999999999999

    still not comming...
    i have one table each entry is having only one fromdata and one todate only
    i am running below in sql it is showing two rows. ok.
      select t1.U_frmdate,t1.U_todate  ,ISNULL(t2.firstName,'')+ ',' +ISNULL(t2.middleName ,'')+','+ISNULL(t2.lastName,'') AS NAME, T2.empID  AS EMPID, T2.U_emp AS Empticket,t2.U_PFAcc,t0.U_pf 
       from  [@PR_PRCSAL1] t0 inner join [@PR_OPRCSAL] t1
       on t0.DocEntry = t1.DocEntry
       inner join ohem t2
       on t2.empID = t0.U_empid  where  t0.U_empid between  '830' and  '850'  and t1.U_frmdate ='20160801'  and  t1.u_todate='20160830'
    in commond promt
      select t1.U_frmdate,t1.U_todate  ,ISNULL(t2.firstName,'')+ ',' +ISNULL(t2.middleName ,'')+','+ISNULL(t2.lastName,'') AS NAME, T2.empID  AS EMPID, T2.U_emp AS Empticket,t2.U_PFAcc,t0.U_pf 
       from  [@PR_PRCSAL1] t0 inner join [@PR_OPRCSAL] t1
       on t0.DocEntry = t1.DocEntry
       inner join ohem t2
       on t2.empID = t0.U_empid  where  t0.U_empid between  {?FromEmid} and  {?ToEmid} and t1.U_frmdate ={?FDate} and  t1.u_todate={?TDate}
    still not showing any results..

  • Oracle 10gr2 locally is not working after  installing Oracle 11g

    hi ,
    Does anyone has any idea after installing oracle 11g in system, Oracle 10g locally is not working. I am getting below error.
    Forms session <2> failed during startup: no response from runtime process

    Generally this is because the software you install last updates the system environment variables with its information, thereby break products that use files with similar names. Specifically, look at PATH and ORACLE_HOME. Likely you will see that entries for your 11g installation will be displayed first. In order to use v10, you would need to change this or use script files to start executibles. For Forms runtime, be sure to properly set default.env to point to the desired PATH

  • Oracle XE Western version not working on Windows XP pro

    I have noticed that production version of the Oracle XE Western version does not work properly. The beta version created the database properly, the production version does not. I tried to install it on a Windows XP Pro version.
    Below is the alert_xe.log
    Dump file c:\oracle\xeprod\app\oracle\admin\xe\bdump\alert_xe.log
    Thu Mar 30 11:38:32 2006
    ORACLE V10.2.0.1.0 - Production vsnsta=0
    vsnsql=14 vsnxtr=3
    Windows XP Version V5.1 Service Pack 2
    CPU : 1 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:533M/1023M, Ph+PgF:2253M/2461M, VA:1945M/2047M
    Thu Mar 30 11:38:32 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Shared memory segment for instance monitoring created
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    MMAN started with pid=4, OS id=4092
    PSP0 started with pid=3, OS id=4088
    PMON started with pid=2, OS id=4084
    DBW0 started with pid=5, OS id=2044
    LGWR started with pid=6, OS id=1248
    CKPT started with pid=7, OS id=200
    SMON started with pid=8, OS id=2036
    RECO started with pid=9, OS id=2012
    CJQ0 started with pid=10, OS id=212
    MMON started with pid=11, OS id=1924
    Thu Mar 30 11:38:38 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    MMNL started with pid=12, OS id=380
    Thu Mar 30 11:38:38 2006
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:38:42 2006
    The input backup piece C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB is in compressed format.
    Thu Mar 30 11:39:10 2006
    Full restore complete of datafile 4 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\USERS.DBF. Elapsed time: 0:00:26
    checkpoint is 193065
    Full restore complete of datafile 2 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\UNDO.DBF. Elapsed time: 0:00:27
    checkpoint is 193065
    Thu Mar 30 11:39:27 2006
    Full restore complete of datafile 3 to datafile copy C:\ORACLE\XEPROD\ORADATA\XE\SYSAUX.DBF. Elapsed time: 0:00:45
    checkpoint is 193065
    Thu Mar 30 11:39:27 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_488.trc:
    ORA-00600: internal error code, arguments: [krbrckhr_fail], [C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\CONFIG\SEEDDB\EXPRESS.DFB], [83], [128], [3], [9427], [], []
    Thu Mar 30 11:39:29 2006
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Thu Mar 30 11:39:29 2006
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Thu Mar 30 11:39:29 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_744.trc:
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS...
    Shutting down instance: further logons disabled
    Thu Mar 30 11:39:29 2006
    Stopping background process CJQ0
    Thu Mar 30 11:39:29 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:29 2006
    Stopping background process MMON
    Thu Mar 30 11:39:30 2006
    Shutting down instance (immediate)
    License high water mark = 1
    Thu Mar 30 11:39:30 2006
    Stopping Job queue slave processes
    Thu Mar 30 11:39:30 2006
    Job queue slave processes stopped
    Waiting for dispatcher 'D000' to shutdown
    All dispatchers and shared servers shutdown
    Thu Mar 30 11:39:32 2006
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thu Mar 30 11:39:34 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    PMON started with pid=2, OS id=756
    PSP0 started with pid=3, OS id=796
    MMAN started with pid=4, OS id=836
    DBW0 started with pid=5, OS id=928
    LGWR started with pid=6, OS id=152
    CKPT started with pid=7, OS id=924
    SMON started with pid=8, OS id=932
    RECO started with pid=9, OS id=1212
    MMON started with pid=10, OS id=1272
    MMNL started with pid=11, OS id=1296
    Thu Mar 30 11:39:35 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:39:35 2006
    Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS
    Thu Mar 30 11:39:35 2006
    WARNING: Default Temporary Tablespace not specified in CREATE DATABASE command
    Default Temporary Tablespace will be necessary for a locally managed database in future release
    Thu Mar 30 11:39:35 2006
    Errors in file c:\oracle\xeprod\app\oracle\admin\xe\udump\xe_ora_1144.trc:
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE"
    MAXINSTANCES 8
    MAXLOGHISTORY 1
    MAXLOGFILES 16
    MAXLOGMEMBERS 3
    MAXDATAFILES 100
    Datafile
    'C:\oracle\xeprod\oradata\XE\system.dbf',
    'C:\oracle\xeprod\oradata\XE\undo.dbf',
    'C:\oracle\xeprod\oradata\XE\sysaux.dbf',
    'C:\oracle\xeprod\oradata\XE\users.dbf'
    LOGFILE
    GROUP 1 SIZE 51200K,
    GROUP 2 SIZE 51200K,
    RESETLOGS...
    Thu Mar 30 11:39:35 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:36 2006
    Stopping background process MMON
    Starting background process MMON
    Starting background process MMNL
    MMON started with pid=10, OS id=580
    MMNL started with pid=11, OS id=1288
    Thu Mar 30 11:39:36 2006
    ALTER SYSTEM enable restricted session;
    Thu Mar 30 11:39:36 2006
    alter database "XE" open resetlogs
    ORA-1507 signalled during: alter database "XE" open resetlogs...
    Thu Mar 30 11:39:36 2006
    alter database drop logfile group 3
    ORA-1507 signalled during: alter database drop logfile group 3...
    Thu Mar 30 11:39:36 2006
    ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oracle\xeprod\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED
    ORA-1109 signalled during: ALTER TABLESPACE TEMP ADD TEMPFILE 'C:\oracle\xeprod\oradata\XE\temp.dbf' SIZE 20480K REUSE AUTOEXTEND ON NEXT 640K MAXSIZE UNLIMITED...
    Thu Mar 30 11:39:36 2006
    ALTER SYSTEM disable restricted session;
    Shutting down instance: further logons disabled
    Thu Mar 30 11:39:37 2006
    Stopping background process MMNL
    Thu Mar 30 11:39:38 2006
    Stopping background process MMON
    Thu Mar 30 11:39:38 2006
    Shutting down instance (immediate)
    License high water mark = 1
    Waiting for dispatcher 'D000' to shutdown
    Waiting for shared server 'S000' to die
    Waiting for shared server 'S002' to die
    Waiting for shared server 'S003' to die
    All dispatchers and shared servers shutdown
    Thu Mar 30 11:39:39 2006
    ALTER DATABASE CLOSE NORMAL
    ORA-1507 signalled during: ALTER DATABASE CLOSE NORMAL...
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    ARCH: Archival disabled due to shutdown: 1089
    Shutting down archive processes
    Archiving is disabled
    Archive process shutdown avoided: 0 active
    Thu Mar 30 11:39:42 2006
    Starting ORACLE instance (normal)
    LICENSE_MAX_SESSION = 0
    LICENSE_SESSIONS_WARNING = 0
    Picked latch-free SCN scheme 2
    Using LOG_ARCHIVE_DEST_10 parameter default value as USE_DB_RECOVERY_FILE_DEST
    Autotune of undo retention is turned on.
    IMODE=BR
    ILAT =10
    LICENSE_MAX_USERS = 0
    SYS auditing is disabled
    ksdpec: called for event 13740 prior to event group initialization
    Starting up ORACLE RDBMS Version: 10.2.0.1.0.
    System parameters with non-default values:
    sessions = 49
    spfile = C:\ORACLE\XEPROD\APP\ORACLE\PRODUCT\10.2.0\SERVER\DBS\SPFILEXE.ORA
    sga_target = 285212672
    control_files = C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF
    compatible = 10.2.0.1.0
    db_recovery_file_dest = C:\oracle\xeprod\app\oracle\flash_recovery_area
    db_recovery_file_dest_size= 10737418240
    undo_management = AUTO
    undo_tablespace = UNDO
    remote_login_passwordfile= EXCLUSIVE
    dispatchers = (PROTOCOL=TCP) (SERVICE=XEXDB)
    shared_servers = 4
    job_queue_processes = 4
    audit_file_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\ADUMP
    background_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\BDUMP
    user_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\UDUMP
    core_dump_dest = C:\ORACLE\XEPROD\APP\ORACLE\ADMIN\XE\CDUMP
    db_name = XE
    open_cursors = 300
    os_authent_prefix =
    pga_aggregate_target = 94371840
    PMON started with pid=2, OS id=1480
    PSP0 started with pid=3, OS id=1484
    MMAN started with pid=4, OS id=1488
    DBW0 started with pid=5, OS id=576
    LGWR started with pid=6, OS id=1492
    CKPT started with pid=7, OS id=1496
    SMON started with pid=8, OS id=1260
    RECO started with pid=9, OS id=376
    CJQ0 started with pid=10, OS id=824
    MMON started with pid=11, OS id=244
    MMNL started with pid=12, OS id=1636
    Thu Mar 30 11:39:42 2006
    starting up 1 dispatcher(s) for network address '(ADDRESS=(PARTIAL=YES)(PROTOCOL=TCP))'...
    starting up 4 shared server(s) ...
    Oracle Data Guard is not available in this edition of Oracle.
    Thu Mar 30 11:39:42 2006
    ALTER DATABASE MOUNT
    Thu Mar 30 11:39:42 2006
    ORA-00202: control file: 'C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    Thu Mar 30 11:39:42 2006
    ORA-205 signalled during: ALTER DATABASE MOUNT...
    Thu Mar 30 11:41:54 2006
    alter database mount
    Thu Mar 30 11:41:54 2006
    ORA-00202: control file: 'C:\ORACLE\XEPROD\ORADATA\XE\CONTROL.DBF'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-205 signalled during: alter database mount
    Thanks,
    Lucian

    I think the relevant error from the log file is as follows
    ORA-01565: error in identifying file 'C:\oracle\xeprod\oradata\XE\system.dbf'
    ORA-27041: unable to open file
    OSD-04002: unable to open file
    O/S-Error: (OS 2) The system cannot find the file specified.
    ORA-1503 signalled during: Create controlfile reuse set database "XE
    There are a couple of things to consider here
    Why is this install going into c:\oracle\xeprod ? If should be going into C:\oraclexe. Did you do something to change the default install infrastructure ?
    Secondly - sometimes we see this unable to open file error message if some other process is reading the file at the same time as the installer is trying to install it. Anti virus software and Google desktop have been culprits to date.

  • Oracle Clinical - install.sh not working - says not found or Java runtime error.

    install.sh not working - need help
    Hi all,
    OS Solaris 8. Sun Sparc 20 - 256 MB 9.1 GB. I am using csh for this install as instructed for the user OPAPPS.
    I have installed Oracle 8.1.6 Rel 2 on the SUN Sparc. Everything is fine and a customised DB has been created. Now I
    have to install an Oracle application on the same server. I have a working knowledge of Unix but I don't know scripting.
    I logged in as OPAPPS as required. (.chsrc). I have set the path with all possible directories and made it a member of
    group DBA as requested.
    I put the CD in the CDROM and then cd /cdrom
    # install.sh
    BUT I get this message: install.sh not found.
    install.sh is there on the CD. This is the contents of install.sh from the CD
    #!/bin/sh
    os=`uname | tr A-A a-z`
    case "$os" in
    sunos) platform=solaris
    hp-ux) platform=hp-ux
    osf1) platform=decunix
    esac
    #The environment variable $SRCHOME cannot be set during installation
    unset SRCHOME
    unset SHLIB_PATH
    CMDDIR=`dirname $0`
    if [ "CMDDIR" = "." ]; then
    CMDDIR=`pwd`;
    fi
    # Replace relatove path with fully qualified path
    if [ ! "`echo $CMDDIR|grep '^/'`" ]; then
    CMDDIR=`pwd`/$CMDDIR;
    fi
    if [ x${PATH} != x ] ; then
    PATH=$PATH:/usr/bin: /bin
    export PATH
    else
    PATH=/usr/bin:/bin
    fi
    cd $CMDDIR/$platform/Disk1/install/$platform
    ./runinstaller $*
    directory structure on CD
    -r-xr-xr-x 1 root sys 638 Aug 23 2000 install.sh
    dr-xr-xr-x solaris
    dr-xr-xr-x hpunix
    dr-xr-xr-x decunix
    dr-xr-xr-x nls732
    solaris/disk1/install/solaris and the file
    -r-xr-xr-x runinsta.
    -r-xr-xr-x oraparm.ini
    dr-xr-xr-x images
    d .
    d ..
    Would anybody know why I get install.sh NOT found when it is there?. This executabel is on the CD. I am not sure why it gives
    a java runtime error message when it is OK. Remember, I have already installed Oracle 8i using the same environment with the existing java runtime .
    Thanks for your help.

    Hi,
    I am installing Oracle clinical 4.5.x.
    I need to know whether both the Database server and application server for Oracle Clinical can be installed on same server(windows 2000 server).
    Both of them are installed on windows platform.
    It seems that u have tried the single node installation.
    So,please give all the possible details regarding the single node installation for oracle clinical no matter what platform it is.
    Please reply me as soon as possible, its urgent.
    Thanking u in advance.

  • The link to a user defined oracle stored procedure does not work

    This is based on the HowTo Download a file
    http://otn.oracle.com/products/database/htmldb/howtos/howto_file_upload.html
    I have given a link to a procedure as follows, which will download the file (as given in the HowTo):
    #OWNER#.download_my_file?p_file=#ID#.
    However, this does not work. It tries to open a page rather than executing the procedure. It displays the page not found message

    that page not found message is a generic one. you'd want to check your apache logs for more info on what really happened. my guess is that you missed step 5 of that how-to, "grant execute on download_my_file to public"
    hope this helps,
    raj

  • Xml parser procedur which worked in oracle 8.1.7 not working in oracle 9ir2

    hi all,
    THE BELOW PROCEDURE TO PARSE A XML WEB PAGE AND RETRIEVE THE DATA INTO TABLE IS WORKING WELL IN ORACLE 8.1.7 , BUT WHEN WE UPGRADED TO oRACLE 9I RELEASE 2 ,,ITS NOT WORKING AND GIVING THESE ERRORS,,
    13:44:56 Error: ORA-29532: Java call terminated by uncaught Java exception: java.lang.NullPointerException
    ORA-06512: at "SYS.XMLNODECOVER", line 0
    ORA-06512: at "SYS.XSLPROCESSOR", line 500
    ORA-06512: at "XXCNA.XRATESDLOAD", line 37
    ORA-06512: at line 2
    CAN ANYONE GIVE A TIP?
    REGARDS,
    VIJAY
    CREATE OR REPLACE PACKAGE BODY XRATESDLOAD AS
    PROCEDURE XRATESDLOADP
    IS
    --DECLARE THE REQUIRED XML PARSER, DOM DOCUMENT,NODES AND NODELLISTS
    v_parser xmlparser.Parser;
    v_doc xmldom.DOMDocument;
    v_nl xmldom.DOMNodeList;
    v_n xmldom.DOMNode;
    --CREATE A PL/SQL TYPE TABLE
    TYPE tab_type IS TABLE OF CNA_XRATES_TEXT%ROWTYPE;
         t_tab tab_type := tab_type();
    BEGIN
    -- Create a parser.
    v_parser := xmlparser.newParser;
    -- Parse the document and create a new DOM document.
    xmlparser.parse(v_parser, 'http://www.xe.com/dfs/datafeed2.cgi?cnaeuropeholdingsltd');
    v_doc := xmlparser.getDocument(v_parser);
    -- Free resources associated with the Parser now it is no longer needed.
    xmlparser.freeParser(v_parser);
    -- Get a list of all the CURRENCY nodes in the document using the XPATH syntax.
    v_nl := xslprocessor.selectNodes(xmldom.makeNode(v_doc),'/xe-datafeed/currency');
    dbms_output.put_line( 'Currency rates processed on '||to_char(sysdate));
    --DELETE THE RECORDS IN THE CNA_XRATES_TEXT
    delete from CNA_XRATES_TEXT;
    dbms_output.put_line( 'Previous records of CNA_XRATES_TEXT table deleted '||to_char(sysdate));
    -- Loop through the list and create a new record in a tble collection
    -- for each CURRENCY record.
    FOR cur_emp IN 0 .. xmldom.getLength(v_nl) - 1 LOOP
    v_n := xmldom.item(v_nl, cur_emp);
    t_tab.extend;
    -- Use XPATH syntax to assign values to he elements of the collection.
    t_tab(t_tab.last).CURRENCY_SYMBOL := xslprocessor.valueOf(v_n,'csymbol');
    --t_tab(t_tab.last).CURRENCY_NAME     := xslprocessor.valueOf(v_n,'cname');
    t_tab(t_tab.last).CURRENCY_RATE := xslprocessor.valueOf(v_n,'crate');
         --t_tab(t_tab.last).CURRENCY_DATE       := xslprocessor.valueOf(v_n, sysdate);
    END LOOP;
    -- Insert data into the real CNA_XRATES_TEXT table from the table collection.
    -- Form better performance multiple collections should be used to allow
    -- bulk binding using the FORALL construct but this would make the code
    -- too long-winded for this example.
    FOR cur_emp IN t_tab.first .. t_tab.last LOOP
    INSERT INTO CNA_XRATES_TEXT
    (CURRENCY_SYMBOL,
    CURRENCY_RATE,
         CURRENCY_DATE)
    VALUES
    (t_tab(cur_emp).CURRENCY_SYMBOL,
    t_tab(cur_emp).CURRENCY_RATE,
         to_char(sysdate));
    END LOOP;
    dbms_output.put_line( 'Currency rates inserted into CNA_XRATES_TEXT table on '||to_char(sysdate));
    COMMIT;
    -- Free any resources associated with the document now it
    -- is no longer needed.
    xmldom.freeDocument(v_doc);
    END XRATESDLOADP;
    END XRATESDLOAD;
    /

    Unlike Oracle 7.x, versions 8 and above now internalize the trigger you are looking for within the database itself. So you can no longer have the kind of control over this process as you would have done previously, however the performance has increased according to Oracle.
    It is possible to remove these triggers in an emergency as follows:
    -- if tab$.trigflag != 0 - then Oracle internal replication triggers are enabled
    select * from tab$ where trigflag != 0;
    -- to remove Oracle internal replication triggers if replication is not working
    -- and needs to be removed in an emergency to allow writing to the tables
    -- also do this as sys user
    run catrepr
    -- also do this as sys user
    update tab$ set trigflag=0 where trigflag !=0;
    commit;
    shutdown immediate;
    startup
    However this removes all of the triggers - which is not what you want to do in your situation.
    You may find some additional helpful commands in the repdoc.txt file on my website:
    http://www.dotcomsolutionsinc.net/products/repgen/repgen_example_repdoc1.html
    And here is a list of replication setup scripts which could be helpful as well:
    http://www.dotcomsolutionsinc.net/products/repgen/repgen_files.html
    What is expecially important (as I am sure you know) is the setup of conflict resolution, which I do a little bit differently than I have seen documented elsewhere in order to avoid ORA-1403 errors.
    David Simpson
    www.dotcomsolutionsinc.net
    (Oracle Replication Consulting & Tools)

  • BUG: Oracle Schema Processor does not work in Servlets

    We found a bug with Oracle's Schema Processor. It does not work in Servlets.
    When we try to validate a XML document in a Servlet it does not work, but we can execute the same code in a stand alone application and it works.
    The following is the code we are using:
    try {
    File f =new File(filename);
    FileReader r = new FileReader(f);
    DOMParser dp = new DOMParser();
    URL url = createURL (filename);
    dp.setValidationMode(false);
    dp.setSchemaValidationMode(true);
    dp.setPreserveWhitespace(true);
    dp.parse(url);
    System.out.println("it is parsed");
    } catch(Exception e){System.out.println("there is Error"+e.getMessage());}
    null

    I don't think this is related to Servlets per se.
    Check that the Schema processor classes used by the servlet container, and your application are the same.
    Java does not have proper versioning of classes, I have seen many applications collapse. People compiled their code on developer machines, where it worked fine, but when moved to a production machine they failed because the production machine had a different version of classes. Usually the name of the class doesn't change, but either a method or a variable is missing in several classes. VM doesn't complain but simply crashes.
    In your Schema Processor classes that are used by the servlet engine might be different from the one that the app uses. Do a search on the file system to see how many copy of the same class bundle (zip, jar) you have on the system.

  • Oracle Drive specific features not working

    I have set up Oracle Drive against two 10gR2 instances. Both of them fail with different messages.
    There are no issues with MS Web Folders, also most of this functionality works in Oracle Drive.
    When I try to use Drive specific functionality like "set properties", this fails with following messages.
    1. One of them fails with HTTP-404 after using machine name in the URL as opposed to using Virtual Host name
    2. Second one fails with similar error message but this is missing virtual host name or server name in the URL.
    I can't find any Oracle Drive logs to debug. So, my questions are ..
    1. how can I debug Oracle debug?
    2. Does Oracle drive support virtual host?
    3. If so, why is the above behaviour
    Users are keen to use Oracle Drive. So, any help (ASAP) would be appreciated.
    Regards,
    Bala Avula
    Kinetic Software Ltd

    Hi Christian,
    Sorry I didn't get back to you so far. I just noticed that this account is using old email address and I didn't recieve any update when you replied.
    Here are some answers to your questions.
    0) Bye the way one of the servers works now after recent portal repository copy (ptlconfig was run as part of it)
    1) I tested view page, access control and set properties options. All of these fail.
    2) I was looking for log files in the wrong place. Found them now and from the logs, it looks like one of the sites is not getting proper values for OPTIONS query.
    Here is the reply from server that works.
    ==== Request ===================================================================
    OPTIONS /dav_portal/portal/ HTTP/1.1
    Content-Type: text/xml
    Content-Length: 133
    Accept: */*
    Host: devinfo.united-glass.co.uk:7779
    Connection: Keep-Alive
    User-Agent: Windows Client 4.3 (build 12)
    Authorization: Basic ****************
    <?xml version="1.0" ?>
    <D:options xmlns:D="DAV:">
    <Orcl:menulist xmlns:Orcl="http://xmlns.oracle.com/portal/oradav"/>
    </D:options>
    ==== Reply ============================= reply time 1943 ms ====================
    HTTP/1.1 200 OK
    Content-Type: text/xml; charset="utf-8"
    Set-Cookie: portal=9.0.3+en-us+us+AMERICA+C50FA4B405C748BCA1DCBEA4AA945F2D+4F1321F3C7185B361FA993BDEF81AF9A5C7A3D52E417988AFBDAA4D2F94A1B0AE0F3E66338F66F278D85FED4B6E7F5DD8D2FF36DF7632769EA1309A302AE20163B4888CBB4D17A4A; domain=.united-glass.co.uk; path=/dav_portal/portal
    Connection: Keep-Alive
    Keep-Alive: timeout=5, max=999
    Server: Oracle-Application-Server-10g OracleAS-Web-Cache-10g/10.1.2.0.0 (N;ecid=5824288353905,0)
    Content-Length: 1953
    Date: Thu, 18 Aug 2005 15:27:23 GMT
    MS-Author-Via: DAV
    Allow: OPTIONS, GET, HEAD, POST, DELETE, TRACE, PROPFIND, PROPPATCH, COPY, MOVE, LOCK, UNLOCK
    DAV: 1,2
    <orcl:OraclePortalMenu xmlns:orcl="http://www.oracle.com/oradav/xythos/"><orcl:Members><orcl:MenuItem orcl:DisplayName="Set Properties" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=property&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Change Access Control" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=access&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Preview Content" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=preview&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="View Versions" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=version&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /></orcl:Members><orcl:Collections><orcl:MenuItem orcl:DisplayName="Set Properties" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=property&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Change Access Control" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=access&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="View Page" xml:lang="en" orcl:url="http://devinfo.united-glass.co.uk:7779/pls/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=preview&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /></orcl:Collections></orcl:OraclePortalMenu>
    Here is the reply from server that does NOT work.
    ==== Request ===================================================================
    OPTIONS /dav_portal/portal/ HTTP/1.1
    Content-Type: text/xml
    Content-Length: 133
    Accept: */*
    Host: info.united-glass.co.uk:7777
    Connection: Keep-Alive
    User-Agent: Windows Client 4.3 (build 12)
    Authorization: Basic ************************
    <?xml version="1.0" ?>
    <D:options xmlns:D="DAV:">
    <Orcl:menulist xmlns:Orcl="http://xmlns.oracle.com/portal/oradav"/>
    </D:options>
    ==== Reply ============================= reply time 1852 ms ====================
    HTTP/1.1 200 OK
    Content-Type: text/xml; charset="utf-8"
    Set-Cookie: portal=9.0.3+en-us+us+AMERICA+0CAD20EE8A924CC5BB8F6CE84A107D0C+B1812814BE667200A940FD2AF2C795BA3EE4B9659FB2D82DD4058EFCBB335EBB255CC9F2C71111F0A4C51632C9DFBE2FF0D80D97F97B6CBC1167A6B9DAA661210DB1DB5B5A05D22F; domain=.united-glass.co.uk; path=/dav_portal/portal
    Connection: Keep-Alive
    Keep-Alive: timeout=5, max=999
    Server: Oracle-Application-Server-10g OracleAS-Web-Cache-10g/10.1.2.0.0 (N;ecid=8092027261765,0)
    Content-Length: 1694
    Date: Thu, 18 Aug 2005 14:25:09 GMT
    MS-Author-Via: DAV
    Allow: OPTIONS, GET, HEAD, POST, DELETE, TRACE, PROPFIND, PROPPATCH, COPY, MOVE, LOCK, UNLOCK
    DAV: 1,2
    <orcl:OraclePortalMenu xmlns:orcl="http://www.oracle.com/oradav/xythos/"><orcl:Members><orcl:MenuItem orcl:DisplayName="Set Properties" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=property&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Change Access Control" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=access&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Preview Content" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=preview&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="View Versions" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=version&amp;p_is_member=true&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /></orcl:Members><orcl:Collections><orcl:MenuItem orcl:DisplayName="Set Properties" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=property&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="Change Access Control" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=access&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /><orcl:MenuItem orcl:DisplayName="View Page" xml:lang="en" orcl:url="http:/portal/PORTAL.wwsbr_menu.process_menu?p_menu_name=preview&amp;p_is_member=false&amp;p_dav_prefix=/dav_portal/portal&amp;p_path=##PATH##" /></orcl:Collections></orcl:OraclePortalMenu>
    You can seee from the logs that URLs constructed for 2nd one is in complete. Any ideas on fixing this?
    Regards,
    Bala

  • Oracle virtula box machine not working properly

    Hi All,
    I have installed oracle virtual machine with Redhat 6 OS. My host machine is also on Redhat 6 OS.
    The issue I am facing is when I am connecting to virtual machine through Team viewer connection , any special characters are not working i.e /,*," etc. All the alphabets keys are working properly.
    I am only facing the issue when I am connecting through Team viewer , everything works fine when I connects directly to server.
    Sometime I have to connect to it through Team Viewer session to work remotely. Can you please help or suggest something.
    Thanks,
    Virender.

    VIRENDER SINGH wrote:
    Hi Steven,
    Unfortunately I don't have any error message with me even not in team viewer logs. It just simply not type special characters through team viewer.
    Thanks,
    Virender.Ok, so you are sayng that the team viewer interface doesn't seem to be accepting keyboard input for some/all 'special' characters?
    And just to make sure you understand the architecture, that VBox machine is, for all intents and purposes, a remote machine. It has it's own ip address and operates inside its own little world contained within the virtual machine. Do you have any other connectivity type issues with it? Can you start an ssh session on it from your host desktop machine?
    BTW, this is a database forum, and I haven't yet seen anything in this thread relating to a database - or even an Oracle product of any kind. Are we really dealing with an issue that would be better addressed on a generic Linux forum?

  • 32-bit Oracle ODBC Driver does not work under Windows 64-bit

    We have both Oracle Server 64-bit (10.2.0.3) and Oracle Client 32-bit (10.2.0.1) installed on the same Windows 2003 64-bit server.
    We can create and test 64-bit Oracle ODBC System DSN using 64-bit ODBC Administrator.
    We can also create a 32-bit Oracle ODBC System DSN using 32-bit ODBC Administrator.
    However, the "test connection" does not work:
    Unable to connect
    SQLState=IM003
    Specified driver could not be loaded due to system error 998 (Oracle in OraClient10g_home32)
    We need the 32-bit driver due to 32-bit applications acessing the local 64-bit Oracle server.
    How should we accomplish this?
    Thanks.

    I applied 10.2.0.3 path to Oracle Client 32-bit and now the error is different.
    This error message appears 3 times before configuring, creating or testing a System DNS:
    "An unsupported operation was attempted."
    I just click OK 3 times and then can configure, create or test the DSN.
    However the 32-bit application still cannot access Oracle...
    Yours.

  • Heterogenous connection with dg4odbc Oracle 11g: insert did not work !

    Hi,
    we just migrated to a 64bits version of our oracle 10.2.0.4 database.
    We had a heterogenus connection who was woking "A1" at that time (in 32 bits). Now, we had some problems with the Odbc 64bits and we found on this site that we can use dg4odbc (Oracle 11g).
    We tried it and it works well except for a case ... We have to refresh some Oracle tables using a Ingres database. We have a first script SQL that truncate a table and insert data from a table (using heterogenous connection) terminated by a commit. The second one do exactly the same thing but we use a PL/SQL anonymous block.
    Does anybody know why the first script work and the second not ...
    Here is the "log" of the execution of the first script:
    D:\Logiciels\oracle\ora10g\rdbms\BIN>D:\Logiciels\Oracle\Ora10g\rdbms\bin\sqlplu
    s.exe agrt997/oedec12a1 @D:\batch\script_gen\test1.sql
    SQL*Plus: Release 10.2.0.4.0 - Production on Jeu. Juil. 9 14:23:59 2009
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    SQL> set feed on
    SQL>
    SQL> TRUNCATE TABLE AGRBAKA1.ADMIN_LOCALE;
    Table truncated.
    SQL>
    SQL> INSERT INTO AGRBAKA1.ADMIN_LOCALE
    2 SELECT * FROM ADMIN_LOCALE@test_ron;
    *49 rows created.*
    SQL>
    SQL> commit;
    Commit complete.
    SQL> exit
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64
    bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    D:\Logiciels\oracle\ora10g\rdbms\BIN>
    Now, the execution of the second one (who not worked !!):
    D:\Logiciels\oracle\ora10g\rdbms\BIN>D:\Logiciels\Oracle\Ora10g\rdbms\bin\sqlplu
    s.exe agrt997/oedec12a1 @D:\batch\script_gen\test2.sql
    SQL*Plus: Release 10.2.0.4.0 - Production on Jeu. Juil. 9 14:24:32 2009
    Copyright (c) 1982, 2007, Oracle. All Rights Reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    SQL> set feed on
    SQL>
    SQL> TRUNCATE TABLE AGRBAKA1.ADMIN_LOCALE;
    Table truncated.
    SQL>
    SQL> DECLARE
    2 cpt NUMBER;
    3 BEGIN
    4 INSERT INTO AGRBAKA1.ADMIN_LOCALE
    5 SELECT * FROM ADMIN_LOCALE@test_ron;
    6
    7 commit;
    8 EXCEPTION
    9 WHEN OTHERS THEN
    10 ROLLBACK;
    11 END;
    12 /
    DECLARE
    ERROR at line 1:
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    *[Ingres][Ingres 3.0 ODBC Driver]Ingres API invalid handle error*
    ORA-02063: preceding 2 lines from TEST_RON
    ORA-06512: at line 10
    ORA-28500: connection from ORACLE to a non-Oracle system returned this message:
    *[Ingres][Ingres 3.0 ODBC Driver]Ingres API invalid handle error*
    ORA-02063: preceding 2 lines from TEST_RON
    SQL>
    SQL> EXIT
    Disconnected from Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64
    bit Production
    With the Partitioning, Real Application Clusters, OLAP and Data Mining options
    D:\Logiciels\oracle\ora10g\rdbms\BIN>
    It's strange ...
    Thank's
    Yves

    Hi,
    We set the HS_FDS_TRACE_LEVEL=255, stopped/started the listener, started the trace in the ODBC.
    Here is the trace of the dg4odbc:
    Oracle Corporation --- LUNDI JUIL. 13 2009 10:42:42.849
    Heterogeneous Agent Release
    11.1.0.6.0
    Oracle Corporation --- LUNDI JUIL. 13 2009 10:42:42.849
    Version 11.1.0.6.0
    Entered hgogprd
    HOSGIP for "HS_FDS_TRACE_LEVEL" returned "255"
    Entered hgosdip
    setting HS_OPEN_CURSORS to default of 50
    setting HS_FDS_RECOVERY_ACCOUNT to default of "RECOVER"
    setting HS_FDS_RECOVERY_PWD to default value
    setting HS_FDS_TRANSACTION_LOG to default of "HS_TRANSACTION_LOG"
    setting HS_FDS_TRANSACTION_ISOLATION to default of "READ_COMMITTED"
    setting HS_NLS_NCHAR to default of "AL16UTF16"
    setting HS_FDS_TIMESTAMP_AS_DATE to default of "TRUE"
    setting HS_RPC_FETCH_REBLOCKING to default of "ON"
    setting HS_FDS_FETCH_ROWS to default of "100"
    setting HS_FDS_RESULTSET_SUPPORT to default of "FALSE"
    setting HS_FDS_PROC_IS_FUNC to default of "FALSE"
    setting HS_FDS_CHARACTER_SEMANTICS to default of "FALSE"
    setting HS_FDS_MAP_NCHAR to default of "TRUE"
    setting HS_NLS_DATE_FORMAT to default of "YYYY-MM-DD HH24:MI:SS"
    setting HS_FDS_REPORT_REAL_AS_DOUBLE to default of "FALSE"
    setting HS_LONG_PIECE_TRANSFER_SIZE to default of "65536"
    setting HS_SQL_HANDLE_STMT_REUSE to default of "FALSE"
    setting HS_FDS_QUERY_DRIVER to default of "TRUE"
    HOSGIP returned value of "FALSE" for HS_FDS_SUPPORT_STATISTICS
    setting HS_CALL_NAME_ISP to "gtw$:SQLTables;gtw$:SQLColumns;gtw$:SQLPrimaryKeys;gtw$:SQLForeignKeys;gtw$:SQLProcedures;gtw$:SQLStatistics"
    Exiting hgosdip, rc=0
    ORACLE_SID is "IngresSvrA1"
    Product-Info:
    Port Rls/Upd:6/0 PrdStat:0
    Agent:Oracle Database Gateway for ODBC
    Facility:hsa
    Class:ODBC, ClassVsn:11.1.0.6.0_0006, Instance:IngresSvrA1
    Exiting hgogprd, rc=0
    hostmstr: 2960482304:      HOA After hoagprd
    hostmstr: 2960482304:      HOA Before hoainit
    Entered hgoinit
    HOCXU_COMP_CSET=1
    HOCXU_DRV_CSET=178
    HOCXU_DRV_NCHAR=2000
    HOCXU_DB_CSET=178
    HOCXU_SEM_VER=102000
    Entered hgolofn at 2009/07/13-10:42:42
    Exiting hgolofn, rc=0 at 2009/07/13-10:42:42
    HOSGIP for "HS_OPEN_CURSORS" returned "50"
    HOSGIP for "HS_FDS_FETCH_ROWS" returned "100"
    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536"
    HOSGIP for "HS_NLS_NUMERIC_CHARACTER" returned ".,"
    Exiting hgoinit, rc=0 at 2009/07/13-10:42:42
    hostmstr: 2960482304:      HOA After hoainit
    hostmstr: 2960482304:      HOA Before hoalgon
    Entered hgolgon at 2009/07/13-10:42:42
    reco:0, name:AGRT997, tflag:0
    Entered hgosuec at 2009/07/13-10:42:42
    Exiting hgosuec, rc=0 at 2009/07/13-10:42:42
    HOSGIP for "HS_FDS_RECOVERY_ACCOUNT" returned "RECOVER"
    HOSGIP for "HS_FDS_TRANSACTION_LOG" returned ""HS_TRANSACTION_LOG""
    HOSGIP for "HS_FDS_TIMESTAMP_AS_DATE" returned "TRUE"
    HOSGIP for "HS_FDS_CHARACTER_SEMANTICS" returned "FALSE"
    HOSGIP for "HS_FDS_MAP_NCHAR" returned "TRUE"
    HOSGIP for "HS_FDS_RESULT_SET_SUPPORT" returned "FALSE"
    HOSGIP for "HS_FDS_PROC_IS_FUNC" returned "FALSE"
    HOSGIP for "HS_FDS_REPORT_REAL_AS_DOUBLE" returned "FALSE"
    using AGRT997 as default value for "HS_FDS_DEFAULT_OWNER"
    HOSGIP for "HS_SQL_HANDLE_STMT_REUSE" returned "FALSE"
    Entered hgocont at 2009/07/13-10:42:43
    HS_FDS_CONNECT_INFO = "IngresSvrA1"
    RC=-1 from HOSGIP for "HS_FDS_CONNECT_STRING"
    Entered hgogenconstr at 2009/07/13-10:42:43
    dsn:IngresSvrA1, name:AGRT997
    optn:
    ##>Connect Parameters (len=40)<##
    ## DSN=IngresSvrA1;
    #! UID=AGRT997;
    #! PWD=*
    Exiting hgogenconstr, rc=0 at 2009/07/13-10:42:43
    DriverName:CAIIOD35.DLL, DriverVer:03.50.910.0089
    DBMS Name:INGRES, DBMS Version:09.10.0000
    Exiting hgocont, rc=0 at 2009/07/13-10:42:43
    SQLGetInfo returns for SQL_CATALOG_NAME
    Exiting hgolgon, rc=0 at 2009/07/13-10:42:43
    hostmstr: 2954018816:      HOA After hoalgon
    hostmstr: 2954018816: RPC Before Upload Caps
    hostmstr: 2954018816:      HOA Before hoaulcp
    Entered hgoulcp at 2009/07/13-10:42:43
    Entered hgowlst at 2009/07/13-10:42:43
    Exiting hgowlst, rc=0 at 2009/07/13-10:42:43
    SQLGetInfo returns " for SQL_IDENTIFIER_QUOTE_CHAR
    SQLGetInfo returns Y for SQL_COLUMN_ALIAS
    Exiting hgoulcp, rc=0 at 2009/07/13-10:42:43
    hostmstr: 2954018816:      HOA After hoaulcp
    hostmstr: 2954018816: RPC After Upload Caps
    hostmstr: 2954018816: RPC Before Upload DDTR
    hostmstr: 2954018816:      HOA Before hoauldt
    Entered hgouldt at 2009/07/13-10:42:43
    Exiting hgouldt, rc=0 at 2009/07/13-10:42:43
    hostmstr: 2954018816:      HOA After hoauldt
    hostmstr: 2954018816: RPC After Upload DDTR
    hostmstr: 2954018816: RPC Before Begin Trans
    hostmstr: 2954018816:      HOA Before hoabegn
    Entered hgobegn at 2009/07/13-10:42:43
    tflag:0 , initial:1
    hoi:0x12f074, ttid (len 28) is ...
    00: 50434341 3238352E 65363738 34322E62 [ACCP.582876eb.24]
    10: 2E31312E 36323031 34373639 [.11.10269674]
    tbid (len 10) is ...
    0: 000B0018 009CB3EA 0104 [..........]
    Exiting hgobegn, rc=0 at 2009/07/13-10:42:43
    hostmstr: 2954018816:      HOA After hoabegn
    hostmstr: 2954018816: RPC After Begin Trans
    hostmstr: 2954018816: RPC Before Describe Procedure
    hostmstr: 2954018816:      HOA Before hoapdsc
    Entered hgopdsc at 2009/07/13-10:42:43
    Describing procedure AGRT997.admin_locale
    Output hoada
    hgopdsc, line 1222: NO hoada to print
    Exiting hgopdsc, rc=942 at 2009/07/13-10:42:43
    hostmstr: 2954018816:      HOA After hoapdsc
    hostmstr: 2954018816: RPC After Describe Procedure
    hostmstr: 2954018816: RPC Before Describe Table
    hostmstr: 2954018816:      HOA Before hoadtab
    Entered hgodtab at 2009/07/13-10:42:43
    count:1
    table: AGRT997.admin_locale
    Entered hgopcda at 2009/07/13-10:42:44
    Column:1(dir_no_direc): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:2(adr_no_adm_reg): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:3(adl_no_adm_loc): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:4(adl_desc_adm_loc): dtype:1 (CHAR), prc/scl:30/0, nullbl:0, octet:30, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:5(adl_adr1_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:6(adl_adr2_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:7(adl_adr3_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:8(adl_cd_post_adm_lc): dtype:1 (CHAR), prc/scl:6/0, nullbl:0, octet:6, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:9(adl_no_tel_adm_loc): dtype:1 (CHAR), prc/scl:10/0, nullbl:0, octet:10, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:10(adl_no_fax_adm_loc): dtype:1 (CHAR), prc/scl:10/0, nullbl:0, octet:10, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:11(uti_id): dtype:1 (CHAR), prc/scl:7/0, nullbl:0, octet:7, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:12(bak_dt_dern_modif_rec): dtype:93 (TIMESTAMP), prc/scl:19/0, nullbl:1, octet:7, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:13(uti_id_uvb): dtype:1 (CHAR), prc/scl:7/0, nullbl:0, octet:7, sign:1, radix:10
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    The hoada for table AGRT997.admin_locale follows...
    hgodtab, line 577: Printing hoada @ 0224711C
    MAX:13, ACTUAL:13, BRC:1, WHT=6
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    -6 TINYINT N 1 1 0/ 0 0 0 20 dir_no_direc
    -6 TINYINT N 1 1 0/ 0 0 0 20 adr_no_adm_reg
    -6 TINYINT N 1 1 0/ 0 0 0 20 adl_no_adm_loc
    1 CHAR N 30 30 0/ 0 0 0 0 adl_desc_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr1_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr2_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr3_adm_loc
    1 CHAR N 6 6 0/ 0 0 0 0 adl_cd_post_adm_lc
    1 CHAR N 10 10 0/ 0 0 0 0 adl_no_tel_adm_loc
    1 CHAR N 10 10 0/ 0 0 0 0 adl_no_fax_adm_loc
    1 CHAR N 7 7 0/ 0 0 0 0 uti_id
    91 DATE Y 16 16 0/ 0 0 0 0 bak_dt_dern_modif_rec
    1 CHAR N 7 7 0/ 0 0 0 0 uti_id_uvb
    Exiting hgodtab, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoadtab
    hostmstr: 2954018816:      HOA Before hoadafr
    Entered hgodafr, cursor id 0 at 2009/07/13-10:42:44
    Exiting hgodafr, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoadafr
    hostmstr: 2954018816: RPC After Describe Table
    hostmstr: 2954018816: RPC Before SQL Bundling
    hostmstr: 2954018816:      HOA Before hoxpars
    Entered hgopars, cursor id 1 at 2009/07/13-10:42:44
    type:0
    SQL text from hgopars, id=1, len=312 ...
    000: 454C4553 41205443 64222E31 6E5F7269 [SELECT A1."dir_n]
    010: 69645F6F 22636572 2E31412C 72646122 [o_direc",A1."adr]
    020: 5F6F6E5F 5F6D6461 22676572 2E31412C [_no_adm_reg",A1.]
    030: 6C646122 5F6F6E5F 5F6D6461 22636F6C ["adl_no_adm_loc"]
    040: 2E31412C 6C646122 7365645F 64615F63 [,A1."adl_desc_ad]
    050: 6F6C5F6D 412C2263 61222E31 615F6C64 [m_loc",A1."adl_a]
    060: 5F317264 5F6D6461 22636F6C 2E31412C [dr1_adm_loc",A1.]
    070: 6C646122 7264615F 64615F32 6F6C5F6D ["adl_adr2_adm_lo]
    080: 412C2263 61222E31 615F6C64 5F337264 [c",A1."adl_adr3_]
    090: 5F6D6461 22636F6C 2E31412C 6C646122 [adm_loc",A1."adl]
    0A0: 5F64635F 74736F70 6D64615F 22636C5F [_cd_post_adm_lc"]
    0B0: 2E31412C 6C646122 5F6F6E5F 5F6C6574 [,A1."adl_no_tel_]
    0C0: 5F6D6461 22636F6C 2E31412C 6C646122 [adm_loc",A1."adl]
    0D0: 5F6F6E5F 5F786166 5F6D6461 22636F6C [_no_fax_adm_loc"]
    0E0: 2E31412C 69747522 2264695F 2E31412C [,A1."uti_id",A1.]
    0F0: 6B616222 5F74645F 6E726564 646F6D5F ["bak_dt_dern_mod]
    100: 725F6669 2C226365 222E3141 5F697475 [if_rec",A1."uti_]
    110: 755F6469 20226276 4D4F5246 47412220 [id_uvb" FROM "AG]
    120: 39395452 222E2237 696D6461 6F6C5F6E [RT997"."admin_lo]
    130: 656C6163 31412022 [cale" A1]
    Exiting hgopars, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoxpars
    hostmstr: 2954018816:      HOA Before hoxopen
    Entered hgoopen, cursor id 1 at 2009/07/13-10:42:44
    hgoopen, line 83: NO hoada to print
    Exiting hgoopen, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoxopen
    hostmstr: 2954018816:      HOA Before hoxdscr
    Entered hgodscr, cursor id 1 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:1(dir_no_direc): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:2(adr_no_adm_reg): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:3(adl_no_adm_loc): dtype:-6 (TINYINT), prc/scl:3/0, nullbl:0, octet:0, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:4(adl_desc_adm_loc): dtype:1 (CHAR), prc/scl:30/0, nullbl:0, octet:30, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:5(adl_adr1_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:6(adl_adr2_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:7(adl_adr3_adm_loc): dtype:1 (CHAR), prc/scl:35/0, nullbl:0, octet:35, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:8(adl_cd_post_adm_lc): dtype:1 (CHAR), prc/scl:6/0, nullbl:0, octet:6, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:9(adl_no_tel_adm_loc): dtype:1 (CHAR), prc/scl:10/0, nullbl:0, octet:10, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:10(adl_no_fax_adm_loc): dtype:1 (CHAR), prc/scl:10/0, nullbl:0, octet:10, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:11(uti_id): dtype:1 (CHAR), prc/scl:7/0, nullbl:0, octet:7, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:12(bak_dt_dern_modif_rec): dtype:93 (TIMESTAMP), prc/scl:19/0, nullbl:1, octet:7, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    Entered hgopcda at 2009/07/13-10:42:44
    Column:13(uti_id_uvb): dtype:1 (CHAR), prc/scl:7/0, nullbl:0, octet:7, sign:1, radix:0
    Exiting hgopcda, rc=0 at 2009/07/13-10:42:44
    hgodscr, line 521: Printing hoada @ 022470D0
    MAX:13, ACTUAL:13, BRC:100, WHT=5
    DTY NULL-OK LEN MAXBUFLEN PR/SC CST IND MOD NAME
    -6 TINYINT N 1 1 0/ 0 0 0 20 dir_no_direc
    -6 TINYINT N 1 1 0/ 0 0 0 20 adr_no_adm_reg
    -6 TINYINT N 1 1 0/ 0 0 0 20 adl_no_adm_loc
    1 CHAR N 30 30 0/ 0 0 0 0 adl_desc_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr1_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr2_adm_loc
    1 CHAR N 35 35 0/ 0 0 0 0 adl_adr3_adm_loc
    1 CHAR N 6 6 0/ 0 0 0 0 adl_cd_post_adm_lc
    1 CHAR N 10 10 0/ 0 0 0 0 adl_no_tel_adm_loc
    1 CHAR N 10 10 0/ 0 0 0 0 adl_no_fax_adm_loc
    1 CHAR N 7 7 0/ 0 0 0 0 uti_id
    91 DATE Y 16 16 0/ 0 0 0 0 bak_dt_dern_modif_rec
    1 CHAR N 7 7 0/ 0 0 0 0 uti_id_uvb
    Exiting hgodscr, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoxdscr
    hostmstr: 2954018816: RPC After SQL Bundling
    hostmstr: 2954018816: RPC Before Describe Table
    hostmstr: 2954018816:      HOA Before hoadtab
    Entered hgodtab at 2009/07/13-10:42:44
    count:1
    table: admin_locale
    The hoada for table admin_locale follows...
    hgodtab, line 577: NO hoada to print
    Exiting hgodtab, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoadtab
    hostmstr: 2954018816: RPC After Describe Table
    hostmstr: 2954018816: RPC Before SQL Bundling
    hostmstr: 2954018816:      HOA Before hoxclse
    Entered hgoclse, cursor id 1 at 2009/07/13-10:42:44
    Exiting hgoclse, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoxclse
    hostmstr: 2954018816:      HOA Before hoadafr
    Entered hgodafr, cursor id 1 at 2009/07/13-10:42:44
    Exiting hgodafr, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoadafr
    hostmstr: 2954018816:      HOA Before hoxpars
    Entered hgopars, cursor id 1 at 2009/07/13-10:42:44
    type:0
    SQL text from hgopars, id=1, len=28 ...
    00: 454C4553 2A205443 4F524620 6122204D [SELECT * FROM "a]
    10: 6E696D64 636F6C5F 22656C61 [dmin_locale"]
    Entered hgopoer at 2009/07/13-10:42:44
    hgopoer, line 159: got native error 7 and sqlstate HY000; message follows...
    [Ingres][Ingres 3.0 ODBC Driver]Ingres API invalid handle error
    Exiting hgopoer, rc=0 at 2009/07/13-10:42:44
    hgopars, line 278: calling SQLPrepare got sqlstate HY000
    Exiting hgopars, rc=28500 at 2009/07/13-10:42:44 with error ptr FILE:hgopars.c LINE:308 ID:Prepare stmt
    hostmstr: 2954018816:      HOA After hoxpars
    hostmstr: 2954018816: RPC After SQL Bundling
    hostmstr: 2954018816: RPC Before Rollback Trans
    hostmstr: 2954018816:      HOA Before hoaroll
    Entered hgoroll at 2009/07/13-10:42:44
    tflag:1 , cmt(0):
    hoi:0x12f074, ttid (len 28) is ...
    00: 50434341 3238352E 65363738 34322E62 [ACCP.582876eb.24]
    10: 2E31312E 36323031 34373639 [.11.10269674]
    tbid (len 10) is ...
    0: 000B0018 009CB3EA 0104 [..........]
    Entered hgocpctx at 2009/07/13-10:42:44
    Exiting hgocpctx, rc=0 at 2009/07/13-10:42:44
    Entered hgopoer at 2009/07/13-10:42:44
    hgopoer, line 159: got native error 7 and sqlstate HY000; message follows...
    [Ingres][Ingres 3.0 ODBC Driver]Ingres API invalid handle error
    Exiting hgopoer, rc=0 at 2009/07/13-10:42:44
    hgoroll, line 124: calling SQLEndTran got sqlstate HY000
    Exiting hgoroll, rc=28500 at 2009/07/13-10:42:44 with error ptr FILE:hgoroll.c LINE:124 ID:End transaction
    hostmstr: 2954018816:      HOA After hoaroll
    hostmstr: 2954018816: RPC After Rollback Trans
    hostmstr: 2954018816: RPC Before Rollback Trans
    hostmstr: 2954018816:      HOA Before hoaroll
    Entered hgoroll at 2009/07/13-10:42:44
    tflag:1 , cmt(0):
    hoi:0x12f074, ttid (len 28) is ...
    00: 50434341 3238352E 65363738 34322E62 [ACCP.582876eb.24]
    10: 2E31312E 36323031 34373639 [.11.10269674]
    tbid (len 10) is ...
    0: 000B0018 009CB3EA 0104 [..........]
    Entered hgocpctx at 2009/07/13-10:42:44
    Exiting hgocpctx, rc=0 at 2009/07/13-10:42:44
    Exiting hgoroll, rc=0 at 2009/07/13-10:42:44
    hostmstr: 2954018816:      HOA After hoaroll
    hostmstr: 2954018816: RPC After Rollback Trans
    hostmstr: 2954018816: RPC Before Logoff
    hostmstr: 2954018816:      HOA Before hoalgof
    Entered hgolgof at 2009/07/13-10:42:46
    tflag:1
    Exiting hgolgof, rc=0 at 2009/07/13-10:42:46
    hostmstr: 2956316672:      HOA After hoalgof
    hostmstr: 2956316672: RPC After Logoff
    hostmstr: 2956316672: RPC Before Exit Agent
    hostmstr: 2956316672:      HOA Before hoaexit
    Entered hgoexit at 2009/07/13-10:42:46
    Exiting hgoexit, rc=0 at 2009/07/13-10:42:46
    hostmstr: 2960150528:      HOA After hoaexit
    hostmstr: 2960150528: RPC After Exit Agent
    If you want the "trace log" of the ODBC, I could send it to you in a further reply.
    Thank's

  • Installing Java 7 from Oracle just made Applets not work, how to fix

    Mac 10.7.4. I tried installing Java 7 from Oracle, but all it did was remove half the prefs from Java and make Applets not work. How do I revert/reinstall Java?

    Here you go!
    Say thanks by clicking "Kudos" "thumbs up" in the post that helped you.
    I am employed by HP

Maybe you are looking for

  • Installed Windows 8.1 and now iTunes is gone

    I had been using the Windows 8.1 preview and itunes worked fine, but after "upgrading" to 8.1 Pro all of the software I had rpeviously installed had to be re-installed, including iTunes. However, every time I try to install it, it asks if I wish to "

  • Mobile Browser and LOV

    Hello, I have a mobile browser application to develop and I need something like a LOV mechanism. I saw that the inputListOfValues tag is not supported. I can't use the selectOneChoice for all the fields since they may be very big (in terms of data re

  • OutOfMemory?? URGENT, please

    Hello. while i was running my application, occurred a strange error... Exception occurred during event dispatching: java.lang.OutOfMemoryError <<no stack trace available>> does anybody knows this error?? how can i solve it?? thanx

  • My final cut pro 7 won't open any more

    it jumps up and down on the bar at the bottom then a window pops up saying that it had to close unexpectedly.  All the other features work(Compressor, dvd pro, cinema, soundtrack) and i would love to have the program back.

  • 16:9 to 4:3, multiple clips at once

    I know this is a well discussed topic, but I can't seem to find a way for going from 16:9 to 4:3 on many clips at once. I have a long piece with 16:9 interspersed throughout. Doing one clip at a time is becoming tedious. Thanks, Brian G4 Power Mac 1.