ORA-93114 Not connected to Oracle when using hsodbc

Hi,
I am trying to transfer data from SQLServer 2000 to Oracle 8.1.6 on Sun.
I have configured my ODBC on Sun and it works fine.
Now I am trying to get the data in Oracle.
These are my settings in hsodbc.ora,tnsnames.ora and listener.ora.
HS_FDS_CONNECT_INFO = nj050149
HS_FDS_TRACE_LEVEL = 2
HS_FDS_TRACE_FILE_NAME = $ORACLE_HOME/hssql.trc
HS_FDS_SHAREABLE_NAME = /opt/odbc/lib/ivmsss18.so
# ODBC specific environment variables
set ODBCINI=/opt/odbc/odbc.ini
===============================
tnsnames.ora
hsodbc =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 1521))
(CONNECT_DATA =
(SID = hsodbc)
===============
listener.ora
# Generated by Oracle configuration tools.
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 1521))
(DESCRIPTION =
(PROTOCOL_STACK =
(PRESENTATION = GIOP)
(SESSION = RAW)
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 2481))
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(PROGRAM = extproc)
(SID_DESC =
(GLOBAL_DBNAME = oradev.css.mot.com)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(SID_NAME = NJ05DEV)
(SID_DESC =
(SID_NAME = hsodbc)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(PROGRAM = hsodbc)
==========
I have set up a dblink pointing to hsodbc.
But when I try to select from a table in SQLServer
I get the error message
ERROR at line 1:
ORA-02068: following severe error from HSODBC
ORA-03114: not connected to ORACLE
Can you please help. I could not identify the problem.
Thanks
Ana

Hi,
I am trying to transfer data from SQLServer 2000 to Oracle 8.1.6 on Sun.
I have configured my ODBC on Sun and it works fine.
Now I am trying to get the data in Oracle.
These are my settings in hsodbc.ora,tnsnames.ora and listener.ora.
HS_FDS_CONNECT_INFO = nj050149
HS_FDS_TRACE_LEVEL = 2
HS_FDS_TRACE_FILE_NAME = $ORACLE_HOME/hssql.trc
HS_FDS_SHAREABLE_NAME = /opt/odbc/lib/ivmsss18.so
# ODBC specific environment variables
set ODBCINI=/opt/odbc/odbc.ini
===============================
tnsnames.ora
hsodbc =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 1521))
(CONNECT_DATA =
(SID = hsodbc)
===============
listener.ora
# Generated by Oracle configuration tools.
LISTENER =
(DESCRIPTION_LIST =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = IPC)(KEY = EXTPROC))
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 1521))
(DESCRIPTION =
(PROTOCOL_STACK =
(PRESENTATION = GIOP)
(SESSION = RAW)
(ADDRESS = (PROTOCOL = TCP)(HOST = oradev.css.mot.com)(PORT = 2481))
SID_LIST_LISTENER =
(SID_LIST =
(SID_DESC =
(SID_NAME = PLSExtProc)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(PROGRAM = extproc)
(SID_DESC =
(GLOBAL_DBNAME = oradev.css.mot.com)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(SID_NAME = NJ05DEV)
(SID_DESC =
(SID_NAME = hsodbc)
(ORACLE_HOME = /home/oracle/product/8.1.6)
(PROGRAM = hsodbc)
==========
I have set up a dblink pointing to hsodbc.
But when I try to select from a table in SQLServer
I get the error message
ERROR at line 1:
ORA-02068: following severe error from HSODBC
ORA-03114: not connected to ORACLE
Can you please help. I could not identify the problem.
Thanks
Ana ==============================================
I modified the tnsnames.ora to say
hsodbc.css.mot.com =
(DESCRIPTION =
(ADDRESS_LIST =
(ADDRESS = (PROTOCOL = TCP)(HOST = nj050149)(PORT = 1521))
(CONNECT_DATA =
(SID = hsodbc)
and now I get an error message saying
ORA-12545: Connect failed because target host or object does not exist
Please help.
Ana

Similar Messages

  • ORA-03114 not connected with Oracle when  I execute Query

    Hi!
    I have a Problem with Oracle 9 but I don't know what wrong.
    When I execute this query I get an error everytime:
    select * from
    perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where pl.von < sysdate
    and
    pl.id not in
    select idperleist from rechaus
    where buch_schl <> 'STRN'
    It's not the complete select but the point is I use
    "left outer join leikat l on pl.lsnr = l.lsnr"
    ( not the (+) - Opoerator) and a "not in" -Clausel.
    Without the "not in" -Clausel the select runs fine.
    Sorry for my bad english g
    Thx for help :)
    Michael

    Hi!
    My Selection doesn't run :((
    The Selection runs with (+) -Join and not with "left outer join" .
    i need the "left outer join" couse the Application runs on Oracle
    and Interbase with same Selections. Other Selections with "left outer Join"
    are running under my Oracle 9.2 Database.
    Here something I tested:
    Selection runs with (+)- Join and count ():
    select count(pl.id) anz
    from perleist pl , leikat l
    where
    pl.lsnr = l.lsnr (+)
    --left outer join leikat l on  l.lsnr = pl.lsnr
    and (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Runs without count() and with "left outer join" :
    select --count(pl.id) anz
    from perleist pl
    left outer join leikat l on pl.lsnr = l.lsnr
    where (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Error ORA-03114 when usinf count () and
    "left outer join":
    select count(pl.id) anz
    from perleist pl
    left outer join leikat l on l.lsnr = pl.lsnr
    where
    (pl.von <= to_date('30.09.2002', 'DD.MM.YYYY')) and (pl.bis >= to_date('01.09.2002', 'DD.MM.YYYY'))
    and (l.RelAbr = 1)
    and (pl.AufnNr = 13464)
    and (pl.id not in (select idperleist from rechaus where ((BuchSchluessel <> 'STRN') or (BuchSchluessel is null)) and (StornoDat = to_date('30.12.1899', 'DD.MM.YYYY')) and (AbrJahr = 2002) and (AbrMonat = 9)))
    Selection runs without "not in"
    Selection runs without count()
    Selection runs with (+) and not with
    "left outer join"
    Thx for help :)
    MD

  • Error: ORA-03114: not connected to ORACLE

    While executing the database creation at the middle it is asking for password even if i give password (first attempt ) or empty enter (Last attempt)i'm unable to connect the database.
    Password for DBSNMP user:
    null [ORA-03114: not connected to ORACLE
    Thanks!                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

    in my lsnrctl i am unable to see the database
    H:\lsnrctl status
    LSNRCTL for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-FEB-2013 19:10:31
    Copyright (c) 1991, 2010, Oracle.  All rights reserved.
    Connecting to (DESCRIPTION=(ADDRESS=(PROTOCOL=IPC)(KEY=EXTPROC1522)))
    STATUS of the LISTENER
    Alias                     LISTENER
    Version                   TNSLSNR for 32-bit Windows: Version 11.2.0.1.0 - Production
    Start Date                01-FEB-2013 19:01:09
    Uptime                    0 days 0 hr. 9 min. 22 sec
    Trace Level               off
    Security                  ON: Local OS Authentication
    SNMP                      OFF
    Listener Parameter File   C:\oracle\listener.ora
    Listener Log File         e:\app\username\diag\tnslsnr\mysystem\listener\alert\log.xml
    Listening Endpoints Summary...
      (DESCRIPTION=(ADDRESS=(PROTOCOL=ipc)(PIPENAME=\\.\pipe\EXTPROC1522ipc)))
      (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=localhost)(PORT=1522)))
    Services Summary...
    Service "orcl" has 1 instance(s).
      Instance "orcl", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfully
    Service "First" has 1 instance(s).
      Instance "First", status UNKNOWN, has 1 handler(s) for this service...
    The command completed successfullyi am able to see the all the database which running under this instances
    After that i pingged the database
    H:\>tnsping First
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-FEB-2013 19:13:47
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\Oracle\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost
    )(PORT = 1522)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = FIRST)))
    OK (30 msec)where as in tnsping Last i am able to see the database
    H:\>tnsping Last
    TNS Ping Utility for 32-bit Windows: Version 11.2.0.1.0 - Production on 01-FEB-2013 19:13:47
    Copyright (c) 1997, 2010, Oracle.  All rights reserved.
    Used parameter files:
    C:\Oracle\sqlnet.ora
    Used TNSNAMES adapter to resolve the alias
    Attempting to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST = localhost
    )(PORT = 1522)) (CONNECT_DATA = (SERVER = DEDICATED) (SERVICE_NAME = LAST)))
    OK (30 msec)Last database is in oracleserviceLast
    What is wrong with the process.

  • SQLPlus COPY error: ORA-03114: not connected to ORACLE

    This is what I'm trying to do:
    I'm logged into an Oracle 8.1.6 database on a Windows 2000 Professional box and trying to copy data and tables from an Oracle 7.3.4 database on an HP/UX box.
    I log into my 8.1.6 SQLPlus as:
    scott/tiger@testdb
    Then I run the following:
    SQL> set copycommit 1
    SQL> set arraysize 1000
    SQL> copy from user/user1@devp1 -
    create reps_t -
    using -
    select * from reps_tThis is my error:
    ORA-03114: not connected to ORACLE
    Can someone give me a better understand how SQLPlus COPY works and give me an idea how to locate the problems.
    Thanks,
    Laith E.H.
    null

    I think this combination user/user1@devp1
    is not ok.
    U can get good material about copy command
    from technet itself. Just search for Copy

  • SQLLDR run command line fails:  ORA-03114: not connected to ORACLE

    We moved our db (11.2.0.3) to a new server (VM) and cannot get sql loader direct load to run for a non-oracle db owner account without specifying a connection string (@DB). I have the environment set up correctly for this user and can connect to the database via sqlplus.
    sqlldr dba1 control=test.ctl direct=yes <==FAILS
    Password:
    SQL*Loader: Release 11.2.0.3.0 - Production on Fri May 17 13:00:32 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    SQL*Loader-925: Error while uldlfca: OCIStmtExecute (ptc_hp)
    ORA-03114: not connected to ORACLE
    SQL*Loader-2026: the load was aborted because SQL Loader cannot continue.
    sqlldr dba1@DB control=test.ctl direct=yes <==SUCCESSFUL
    Password:
    SQL*Loader: Release 11.2.0.3.0 - Production on Fri May 17 12:59:11 2013
    Copyright (c) 1982, 2011, Oracle and/or its affiliates. All rights reserved.

    My thoughts were along the line that the environment for user x not set up correctly but I verified ORACLE_SID & ORACLE_HOME prior to posting. This user's environment references TNS_ADMIN so I'm sending you the tnsnames.ora from that location.
    Please note that I can execute this logged in as the db binary owner (environment set the same as user x).
    DWQ1 =
    (DESCRIPTION =
    (ENABLE = BROKEN)
    (ADDRESS = (HOST = xxxx)(PORT = 1521)(PROTOCOL = TCP) )
    (CONNECT_DATA =
    (SERVICE_NAME = DWQ1)
    )

  • Bugfixes in ODP 10.2.0.2? 10.2.0.1:ORA-03114 not connected to oracle

    where can I get a list of bugs fixed in ODP 10.2.0.2 ? We have sporadic problems in ODP 10.2.0.1 (Oracle.DataAccess.Client.OracleException ORA-03114: not connected to ORACLE).
    Thanks for the information
    Patrik

    Hi Patrik,
    I posted the bug fixes in 10.2.0.2.20 in Differences between 10.2.0.1 and 10.2.0.2 ?
    Cheers,
    Greg

  • Central not connect to oracle when install sap4.7ext110

    hi,i install sap4.7 ext1.1 by
    standalone way on two hosts.
    during the installation step of the
    DB instance ,there is a dialog pop
    up ,it says 'start up the central
    instance ',then i start the central
    instance, the disp+work process was
    start for a while then down .i
    serached notes,and found 400241,also
    i initialized the SISADM in the
    sapdba tools ,but it did not work .
    thanks
    trc file: "dev_w0", trc level: 1, release: "620"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    M Wed Mar 12 08:56:36 2008
    M  systemid   324 (IBM RS/6000 with AIX)
    M  relno      6200
    M  patchlevel 0
    M  patchno    1773
    M  intno      20020600
    M  make:      single threaded, ASCII, 64 bit
    M  pid        450812

    M  ***LOG Q01=> tskh_init, WPStart (Workproc 0 1 450812) [thxxhead.c   1060]
    M  calling db_connect ...
    B  create_con (con_name=R/3)
    B  Loading DB library '/usr/sap/R3P/SYS/exe/run/dboraslib.o' ...
    B  Library '/usr/sap/R3P/SYS/exe/run/dboraslib.o' loaded
    B  Version of '/usr/sap/R3P/SYS/exe/run/dboraslib.o' is "620.02", patchlevel (0.1603)
    B  New connection 0 created
    C  No ORACLE_HOME in environment ==> evaluating profile parameter DIR_ORAHOME
    C  Setting ORACLE_HOME to '/oracle/R3P/920_64' (profile parameter DIR_ORAHOME)
    C  Client NLS settings: AMERICAN_AMERICA.US7ASCII
    C  Logon as OPS$-user to get SAPR3's password
    C  Connecting as /@R3P on connection 0 ...
    C  Attaching to DB Server R3P (con_hdl=0,svchp=112164078,svrhp=112165078)
    C  Starting user session (con_hdl=0,svchp=112164078,srvhp=112165078,usrhp=11216db08)
    C  Now I'm connected to ORACLE
    C  *** ERROR => ORA-1403 when accessing table SAPUSER
    [dbsloci.c    10065]
    C  Disconnecting from connection 0 ...
    C  Closing user session (con_hdl=0,svchp=112164078,usrhp=11216db08)
    C  Now I'm disconnected from ORACLE
    C  Try to connect with default password
    C  Connecting as SAPR3/<pwd>@R3P on connection 0 ...
    C  Starting user session (con_hdl=0,svchp=112164078,srvhp=112165078,usrhp=11216db08)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      3878]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    9718]
    B  ***LOG BY2=> sql error 1017   performing CON [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dbsh#2 @ 962] [dbsh    0962 ]
    B  ***LOG BY2=> sql error 1017   performing CON [dblink#1 @ 419] [dblink  0419 ]
    B  ***LOG BY0=> ORA-01017: invalid username/password; logon denied [dblink#1 @ 419] [dblink  0419 ]
    M  ***LOG R19=> tskh_init, db_connect ( DB-Connect 000256) [thxxhead.c   1197]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: db_connect (step 1, th_errno 13, action 3, level 1) [thxxhead.c   8847]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    rq_info = 0
    M    act_reqtype = -1
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = -1
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   672]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  241]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 450812) [dpuxtool.c   316]

    Hi,
    Please specify whether you have installed CI and DB on two different machines (hosts).
    Have you given proper entries when asked about Database Server during your CI installation ? Check the SAPDBHOST parameter in the DEFAULT.PFL
    If yes then have you installed oracle client on CI ? You will have to install it.
    Please check and reply.
    Regards,
    Suhas

  • Not connected to internet when using vpn

    Hi all - new to MACs and having a couple of problems ...... when I connect to internet using built in ethernet no problems .. when i connect with vpn(pptp) I gt te message connected to server but when i open safari and ty to connect to webpages i get the message that i am not connected to the internet - any help would be appreciated
    Pete

    on the internet configuration for your vpn connection goto the menu bar and choose connect menu then from the drop down choose 'options' and uncheck 'send all traffic over VPN connection'

  • Could not connect to ESS when using vpn or remote connection to network.

    Hi,
    Our users could not connect directly to ESS when they are using vpn or dial-up.  The ESS link would ask for user id and password.  There is no problem when they are directly connected to the office network.  The ESS page will display directly when they click on it.  It will not ask for user id and password. We are using Single Sign-On.
    thanks,
    krbas

    I have solved the problem. 
    The problem was solved by including the url of our server in the exception list of the IE proxy settings of VPN.
    Thanks to me. :-D
    Now.... How can I assign points to myself?

  • Bug? ORA-01008: not all variables bound when using DB LINK

    This SQL runs fine in SQL*Plus but returns ORA-01008 in Apex.
    If I replace the bind variable with a literal, it works fine in Apex.
    Using OracleXE 10.2.0.1.0, Apex 2.1.0.00.39
    with ixc as (
         select ic.table_name, ic.index_name, ic.column_name, ic.column_position
         from user_indexes@MY_DB_LINK ix
         join user_ind_columns@MY_DB_LINK ic
         on   (
              ic.index_name    = ix.index_name
              and
              ic.table_name     = ix.table_name
    select
      pk.table_name as pk_table
    , fk.table_name as fk_table
    , ucc.position
    , ucc.column_name
    , nvl(ixc.index_name,'-- not indexed --') as indexed
    , ixc.column_position as ind_position
    from (select table_name, owner, constraint_name, r_constraint_name, r_owner from user_constraints@MY_DB_LINK) fk
    join (select table_name, owner, constraint_name from user_constraints@MY_DB_LINK) pk
    on   (
         fk.r_owner = pk.owner
         and
         fk.r_constraint_name = pk.constraint_name
    join user_cons_columns@MY_DB_LINK ucc
    on   (
         ucc.owner           = fk.owner
         and
         ucc.constraint_name = fk.constraint_name
         and
         ucc.table_name      = fk.table_name
    left join ixc
    on   (
         ixc.column_name = ucc.column_name
         and
         ixc.table_name  = fk.table_name
    where pk.table_name like upper(:P11_TABLE_NAME)
    order by pk.table_name, fk.table_name, index_name, ucc.position

    one small advice....
    SQL95 semantics is something that is new in Oracle (from 9 version)....so maybe if you try to write your query with standard "=" "=+" join signs...
    I know that if that is part of universal app (SQL comaptible) that soem aditional problems may occure...but just try and look at the result...

  • Could not connect to Oracle 8i using jdbc

    I am running Oracle8i Enterprise Edition Release 8.1.5 on Windows 2000 Server. I try to compile a sample program using JDK 1.3 and getting the following error message.
    Program:
    import java.sql.*;
    class Hotels
    public static void main (String args [])
    throws SQLException
    DriverManager.registerDriver (new oracle.jdbc.Driver.OracleDriver ());
    Connection conn =
    DriverManager.getConnection ("jdbc:oracle:oci8:@chandran", "TRAVEL", "TRAVEL");
    Statement stmt = conn.createStatement ();
    ResultSet rset = stmt.executeQuery ("select NAME from HOTELS");
    while (rset.next ())
    System.out.println (rset.getString (1));
    rset.close();
    stmt.close();
    conn.close();
    Error Message:
    D:\>javac E:\Javaex\Hotels.java
    E:\Javaex\Hotels.java:10: cannot resolve symbol
    symbol : class OracleDriver
    location: package Driver
    DriverManager.registerDriver (new oracle.jdbc.Driver.OracleDriver ());
    I am New to the JDBC 2.0 and JDK1.3. Could you please anyone guide me how can I overcome this problem. Should you require any additional information please reply me.
    Best regards

    rdbms 8.1.5 never was certified to run on win 2000.
    by the way rdbms 8.1.5 goes out of support on dec 31, 2000.
    in addition, oracle products like - the jdbc drivers, rdbms, oas, ias -- are NOT certified to work with jdk 1.3.
    if you run into problems, you'll need to reproduce it with jdk 1.2.x and rdbms 8.1.6 or 8.1.7 to have a bug filed.
    to be in a supported configuration, you'll need to move to rdbms 8.1.6 or 8.1.7 (preferred) and stick with jdk 1.2.x.

  • Modern UI apps do not connect to internet when using microsoft VPN (forced tunneling) (win 8.1)

    hi, i am running windows 8.1 on a Surface Pro 3, when i connect to VPN (microsoft) all apps on the desktop work as expected,
    when in modern UI, apps do not detect an intenet connection.
    i belive this is fixed in windows 8 using this hotfix:
    https://support.microsoft.com/kb/2797356?wa=wsignin1.0
    & Here:
    http://support.microsoft.com/kb/2876419
    these hofixes are for windows 8 & not 8.1...
    are there hotfixes for windows 8.1 available? (disabling forced tunneling is not an acceptable solution unfortunatley
    Thanks

    Hi,
    Actually this is a known issue and there is no effective method untill now. You can find related threads in Technet but none of them got a useful solution. However, I'm still keep researching and testing, aim to find a workaround method for this problem.
    If there is any progress in the future, I'll post the solution here.
    Thanks for your understanding.
    Roger Lu
    TechNet Community Support

  • ORA-03114: not connected to ORACLE

    hi all,
    while connecting to the db ,useras are not able to connect to the primary db thru TOAD,we have two RAC instance at primary db of oracle 9.2.0.6 on solaris platform......
    this error generally occurs....

    i am able to connect thru comand prompt by changing the ipaddress at the tnsnames.ora but i am not able to connect to TOAD,it is correctly poniting to tnsnames.ora....

  • Launching of reports,inconsistent error comes,not connected to oracle.

    Hi experts,
    Upon launch of any report-- Receive error: Error Codes: OPR4ONWY:U9IM8TAC:OI2DL65P
    State: HY000. Code: 10058. [NQODBC] [SQL_STATE: HY000] [nQSError: 10058] A general error has occurred. [nQSError: 16001] ODBC error state: S1000 code: 3114 message: [Oracle][ODBC][Ora]ORA-03114: not connected to ORACLE. [nQSError: 16001] ODBC error state: S1000 code: 3114 message: [Oracle][ODBC][Ora]ORA-03114: not connected to ORACLE. [nQSError: 16015] SQL statement execution failed. (HY000)
    Strangely this error is not consistent,it goes when we refresh the screen.Please suggest me something.

    Are you using 'Enable connection pooling' in your connection pool for Oracle ?
    - from help "Allows a single database connection to remain open for the specified time for use by future query requests. Connection pooling saves the overhead of opening and closing a new connection for every query. If you do not select this option, each query sent to the database opens a new connection."
    Maybe the database is dropping the connection before OBIEE closes it if your using this option.
    Is your database or BI Server clustered ? (Rac or OBIEE Clustering)
    Maybe one of the nodes cannot connect, and you get success from one and failure from another
    Is your TNS Listener 'stable' ie its not dropping connections for anything else ?

  • Not connect to oracle error

    Hi
    I made a procedure to make invoice for the customer which is very
    important.
    but when i execute it from two places at the same time one of it
    is completed and other gives me error like.
    Not Connected to Oracle.
    Any suggestions
    Thanks

    Hello Sir,
    I call this procedure from Sql plus its a lengthy procedure used cursors and object types
    it is like that when execute
    SQL> DECLARE
    2 RETURNPARAMETER NUMBER;
    3 SESSION_00 VARCHAR2(200);
    4 TBL_CUSTOMER_MASTER_01 VARCHAR2(200);
    5 TBL_AFFILIATE_02 VARCHAR2(200);
    6 TBL_SALES_SHIP_ADDRESS_04 VARCHAR2(200);
    7 TBLINVOICE_05 VARCHAR2(200);
    8 STOREID VARCHAR2(200);
    9 SEPARATOR VARCHAR2(200);
    10 TBL_INVOICE_PAY_BY_CHECK_06 VARCHAR2(200);
    11
    12 BEGIN
    13 RETURNPARAMETER := NULL;
    14 SESSION_00 := '+111330,1~#111330^1^79^~2~0~79~79~SP5569~~~~~0~~';
    15 TBL_CUSTOMER_MASTER_01 := '~Pamela~Strope~~38 Garfield [email protected]~driverse~';
    16 TBL_AFFILIATE_02 := NULL;
    17 TBL_SALES_SHIP_ADDRESS_04 := 'Pamela~Strope~~38 Garfield Street~~Westover~US~WV~26501~304-296-9040~~';
    18 TBLINVOICE_05 := '~Credit Card~Visa~4111111111111111~Pamela S Strope~5~2008~186~30-Jan-2008~~';
    19 STOREID := '5030';
    20 SEPARATOR := '~';
    21 TBL_INVOICE_PAY_BY_CHECK_06 := '~~~~~ ';
    22
    23 UMESH.PROC_ADDSALESINVOICE ( RETURNPARAMETER, SESSION_00, TBL_CUSTOMER_MASTER_01, TBL_AFFILIATE_02, TBL_SALES_SHIP_ADDRESS_04, TBLINVOICE_05, STOREID, SEPARATOR, TBL_INVOICE_PAY_
    24 END;
    25 /
    +111330,1~#111330^1^79^~2~0~79~79~SP5569~~~~~0~~
    cur_Line RowBound=13
    Session_ItemID=+111330,1
    cur_Line RowBound=10
    tbl_Customer_Master_01 cur_Line RowBound=14
    Cust_Email= [email protected]
    UPDATED @tbl_Customer_Master Cust_ID= CI20089
    @affliate_Id =
    @Order_No =OD22799
    Session_ItemID RowBound=2
    cur_CustItem RowBound=0
    cur_CustItem =0
    111330,1
    111330^1^79^
    cur_CustItem RowBound=3
    cur_CustItem RowBound=3
    cur_CustItem Cart_CustPrice=79
    cur_CustItem Cart_CustPIDs=
    cur_CustItem =3
    StoreId : = 5030 Invoice_No := 118278
    SUB_INVOICE_NO : = 5613
    @Invoice_No = 118278
    PL/SQL procedure successfully completed.
    SQL> /
    ERROR:
    ORA-03114: not connected to ORACLE
    DECLARE
    ERROR at line 1:
    ORA-06502: PL/SQL: numeric or value error%s
    SQL> /
    ERROR:
    ORA-03114: not connected to ORACLE
    I think it is because the resources used in this procedure are busy may be.
    but i am not sure.
    any solutions
    thanks

Maybe you are looking for

  • How do I transfer music to a iphone 3G

    I lost my old phone and would like to know how I can transfer my music to my current borrowed 3G?

  • Only one mobile contact per contact why

    I have a many contacts in my iPhone 5. I've noticed I can only have one phone number for a contact, sometimes companies, with one of the numbers allowed to be categorised as a "Mobile" why. Please assist. Thank you

  • Row Level Security using BO SDK - Dynamic Group and Criteria (where clauses)

    To the Universe Gurus out there: I have a rather daunting task of implementing a Row Level Security on a number of tables within our project using BO XI R2 SP2 with SQLServer 2005. Given the nature of the requirements around this (listed below), I am

  • User parameters in Sqlloader

    Hi I need pass some dynamic values to my ctl file, which either i would register as concurrent pogram in apps or would call in shell script. And that value i need to enter to some column when data is loading. Please let me know the way.

  • G/l master record issue

    HI Gurus, i have some issues in g/l master record issue, 1what is TRANSFER and REVALUATION  of new g/l.regards jana