c# to connect to Oracle 10 g XE error

Example
http://www.Oracle.com/technology/OBE/hol08/dotnet/getstarted-c/getstarted_c_otn.htm


using Oracle.DataAccess.Client; Managed provider for Oracle ODP.NET
using Oracle.DataAccess.Types;

Oradb string = "Data Source = ORCL; User Id = hr; Password = hr; « ;
OracleConnection conn = new OracleConnection (oradb); // C#
Conn. Open(); < == connect error

Error message "ORA-12154: TNS: could not resolve the connect identifier specified.


Of the question
How to connect to Oracle Database 10g Express Edition?
How to enter your tnsnames.ora file called "ORCL"?

I am a beginner.
Best regards

Hello

I posted a reply in the other thread:

Re: Connect error Oracle Database 10g Express Edition?

Kind regards

Mark

Tags: Database

Similar Questions

  • Then try to connect to oracle, I got this error message. zone area not...

    Error message
    ORA-00604: error occurred at recursive SQL ORA-01882 level1: region of the zone could not be found.

    Today, I downloaded developer sql 3.0.04.34.
    Everything was the same, but I couldn't connect oracle server with above message.

    Here is my experience...

    customer
    window7
    Java
    java version "1.6.0_20.
    Java (TM) SE Runtime Environment (build 1.6.0_20 - b02)
    The Client Java VM (build 16, 3 - b01, mode, mixed share)
    window timezone; bangkok
    local window; Korean
    SQL developer zone; idk
    local developer SQL; Korean
    Oracle
    windows 2003 Server
    9i
    regional settings; idk
    before I got here, I googled this problem.
    There are 2-3 solutions, but it did not work.

    1 set the regional settings to the file sqldeveloper.conf
    AddVMOption - Duser.timezone = "+ 07:00"
    2 " set the regional settings to the file ide.conf
    AddVMOption - Duser.timezone = "+ 07:00"
    please help me. "
    Thanks in advance.

    You can find more tips on your research: ora-01882 "zone schedule region not found" with 3.0.03.97 but not 3.0.03.45

    Hope that helps,
    K.

  • Connect to oracle db using nodejs as sysdba

    I'm working on nodejs oracledb. I don't want to connect to oracle db client oracledb nodejs asSYSDBA. Please suggest

    Here is the excerpt that is trying

    oracleSYS3.getConnection({ user  :"sys", password  :"*******", connectString :"connectionString"},function(){}) 

    But I get an error:

    ORA-28009: connection as SYS must be SYSDBA or SYSOPER

    Privileged connections are not yet supported.

    To help us plan, what type of operation you are trying to do and why you?

  • Java class to connect to Oracle Database Express Edition11g and URL

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    I'm just starting to learn Java and with it, learn how to use the Oracle Database Express Edition11g and with it the Oracle SQL Developer...

    At this point, I have the Express Edition is installed and the SQL Developer installed and were able to establish a connection and to run a query and get a result.

    I use Eclipse for JAVA.  I have a work of class that performs a query on a database/table in MySQL.

    So now I'm eager to make the same use as the database Oracle Database Express Edition11g engine.

    And this means that two different versions of JAVA that I need to get the right to be able to do.

    The first is the value of the url variable.

    I now like

    String url = "jdbc:oracle:thin:@localhost";

    then

    Class.forName ("oracle.jdbc.OracleDriver");

    and then

    Connection connection = DriverManager.getConnection (url);

    The thing I'm puzzled on is in the URL where I 'localhost' was supposed to be the term generic and not so much as the text, you should use.

    I see in Web sites like 3 connection to Oracle Database XE

    and decrease example 3-2 by specifying the URL of database using the XE Client Setup

    There I see

    JDBC:driver_type: [username/password] @[//]host_name[: port] [XE]]

    And just what is and what is not is explained here.  So what I ended up with was

    String url = "jdbc:oracle:thin:@localhost";

    So if it was just a text to rest for a name I wonder just such a value or name might really where.

    I noticed that view that an app called "Oracle JDeveloper" has been used to create the values.   I don't have such a thing, or at least I don't think I do.

    Do I need?

    I have Oracle SQL DEVELOPER, where I used the following to connect to the database of the XE.

    My choice for Oracle's SQL Developer Help

    Name of connection: Connection1

    User name: Rod

    Password: myOracle11

    Host name: localhost

    Port: 1521, which is the default value

    SID: xe

    Above so I have to host name set to localhost

    Can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?

    1. I do nothing

    2. While wouldn't you say it

    3. no results from the earlier assignment.

    I asked "'can I use Oracle SQL Developer to do or use it as the value of the URL for the host name?" "

    I showed the choice that I used in SQL Developer to connect to the schema.  And I was wondering, now that I had done this case those are the values that I could use in the Java class that I wrote.  The web site in the first post of this thread showed connection but he was using JDeveloper and SQL Developer.

    So I was wondering if the connection that I made using SQL Developer would do the same trick, and if I could use the values I did there.

    I'm happy to announce that YES, The values used to connect using SQL Developer work exactly like JDeveloper.

    So, given that in SQL Developer for Hostname I chose the value "localhost" "Rod" Username and password "myOracle11".

    I did the following JAVA CLASS that worked:

    package VC_2_9;

    Java for COBOL - copyright 1999 Doke & Hardgrave programmer

    import java.sql. *;

    public class DataBaseDemoOracle

    {

    Public Shared Sub main (string args [])

    {

    String CUST_LAST_NAME;

    / * String url = "jdbc:mysql://localhost/visualcafe";                     */

    String url = "JDBC: thin: @localhost';"

    / * String sqlQuery = "SELECT Name, SSNo, address, telephone OF THE customer;    */

    String sqlQuery = "SELECT CUST_LAST_NAME FROM DEMO_CUSTOMERS";

    //                                               |||||||||||||||

    Try

    {

    Class.forName ("oracle.jdbc.OracleDriver");

    Connection connection = DriverManager.getConnection (url, "Rod","myOracle11" ");

    Statement statement = aConnection.createStatement ();

    ResultSet rs = aStatement.executeQuery (sqlQuery);

    Boolean more = rs.next ();

    (more)

    {

    CUST_LAST_NAME = rs.getString (1);

    /* */

    System.out.println ("name:" + CUST_LAST_NAME);

    more = rs.next ();

    }

    RS. Close();

    aStatement.close ();

    aConnection.close ();

    }

    catch (ClassNotFoundException e)

    {System.out.println ("Exception caught" + e) ;}}

    catch (SQLException e)

    {If (e! = null)}

    {System.out.println ("SQLException taking" + e);}

    e = e.getNextException ();

    } / / end of while loop

    } / / end of capture

    } / / main end

    } / / end DataBaseDemoOracle.java

  • Problem with the connection from Oracle to MS Excel - 64 bit

    Hello

    I have problem connecting Excel to oracle 11.2 using DG4ODBC.

    OS - Windows 7 64 bit

    Database version: - Oracle Database 11g Enterprise Edition Release 11.2.0.4.0 - 64 bit

    Created system using ODBC DSN:

    Name of Data Source = test12

    Oracle home path:-D:\app\11g64db\product\11.2.0\dbhome_1

    Contents of the initdg4odbc.ora file:

    # This is an example of initialization file of the agent that contains the HS settings

    # necessary for the database to ODBC gateway

    #

    # HS init parameters

    #

    Test12 = HS_FDS_CONNECT_INFO

    HS_FDS_TRACE_LEVEL = 255

    #

    # Required for the non-Oracle system environment variables

    #

    #set < varenv > = < value >

    Content of listener.ora:

    listener.ora # Network Configuration file: D:\app\11g64db\product\11.2.0\dbhome_1\NETWORK\ADMIN\listener.ora

    # Generated by Oracle configuration tools.

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (GLOBAL_DBNAME = live)

    (ORACLE_HOME = D:\app\11g64db\product\11.2.0\dbhome_1)

    (SID_NAME = live)

    )

    (SID_DESC =

    (PROGRAM = dg4odbc)

    (SID_NAME = dg4odbc)

    (ORACLE_HOME = D:\app\11g64db\product\11.2.0\dbhome_1)

    )

    )

    LISTENER =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

    )

    ADR_BASE_LISTENER = D:\app\11g64db

    Content of tnsnames.ora:

    tnsnames.ora # Network Configuration file: D:\app\11g64db\product\11.2.0\dbhome_1\network\admin\tnsnames.ora

    # Generated by Oracle configuration tools.

    excel_test =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = tcp)(HOST=localhost) (PORT = 1521))

    (CONNECT_DATA = (SID = dg4odbc))

    (HS = OK)

    )

    SCREW =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP)(HOST = localhost) (PORT = 1521))

    (CONNECT_DATA =

    (SERVER = DEDICATED)

    (SERVICE_NAME = live)

    )

    )

    Status of the listener

    LSNRCTL for 64-bit Windows: Version 11.2.0.4.0 - Production on August 29, 2014 13:56

    : 11

    Copyright (c) 1991, 2013, Oracle.  All rights reserved.

    Connection to (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP)(HOST=localhost) (PORT = 1521)))

    STATUS of the LISTENER

    ------------------------

    Alias LISTENER

    TNSLSNR for Windows 64-bit version: Version 11.2.0.4.0 - Prod

    ction

    Start date August 29, 2014 13:34:58

    Uptime 0 days 0 h 21 min 12 sec

    Draw level off

    Security ON: OS Local Authentication

    SNMP OFF

    Listener parameter File D:\app\11g64db\product\11.2.0\dbhome_1\network\admin\l

    istener.ora

    Listener log file D:\app\11g64db\diag\tnslsnr\Est-Subramanya\listener\al

    ert\log. XML

    Summary of endpoints listening...

    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=127.0.0.1) (PORT = 1521)))

    Summary of services...

    Service "dg4odbc" has 1 instance (s).

    "Dg4odbc" instance, status UNKNOWN, has 1 operation for this service...

    Service 'live' has 2 occurrences.

    Instance of "live" status UNKNOWN, has 1 operation for this service...

    Instance of "live" READY State, has 1 operation for this service...

    Service 'visXDB' has 1 instance (s).

    Instance of "live" READY State, has 1 operation for this service...

    The command completed successfully

    DB Link:

    CREATE DATABASE LINK PUBLIC TEST123 USING 'excel_test ';

    error when querying of data:

    Select * from test@test123;

    ORA-28500: connection between ORACLE and a non-Oracle system has sent this message:

    ORA-02063: preceding line TEST123

    28500 00000 - "connection between ORACLE and a non-Oracle system has sent this message:

    * Cause: The cause is explained in the forwarded message.

    * Action: See documentation for the non-Oracle of the transmission system

    Message.

    Error on line: 1 column: 20

    Appreciate the help in advance...

    Thank you...

    This problem is solved. It was because of the excel 12.0 version when creating data source in administrative tools.

    Thank you.

  • Need to find a way to understand how DB2 connect to Oracle and mirroring of data etc.

    Hi, gurus,

    I just take over a source project which is the ICOMS as400 db2 database. Seems data mirro that CDC is used to replicate from DB2 to oracle.

    I am very new to this CDC datamirror, more I am new to figure out how db2 connect to oracle, it is only through db link or what? or is it tnsnames entry?

    I wish someone in this forum can point me in the right direction.

    Thanks in advance.

    Hello

    What do you not sure about?
    If Oracle can be the site of conduct, you can use the gateway for DRDA database and we can help you with that. If you need assistance on setting up DataMirror CDC to connect to Oracle, then you will need to contact IBM because it is one of their products.

    Kind regards

    Mike

  • dblink oracle to postgres with dg4odbc. ORA-28500: connection between ORACLE and a non-Oracle system returned this message: ORA-02063: preceding line

    Hi, I am creating the database link from a database of Oracle 11 g PostgreSQL with DG4ODBC and unixODBC

    My configured for /etc/odbc.ini

    [PostgreSQL]

    Description = Test to Postgres

    Driver = psqlodbc

    Trace = Yes

    Trace file = /tmp/sql.log

    Database = danieldb

    ServerName =

    UserName = SA

    Password = password

    Port = 5432

    Protocol = 6.4

    ReadOnly = No

    RowVersioning = No

    ShowSystemTables = No

    ShowOidColumn = No

    FakeOidIndex = No

    My configured for /etc/odbcinst.ini

    [ODBC]

    CommLog = 1

    Debug = 1

    FileUsage = 1

    Layout common = No

    Trace = 1

    [psqlodbc]

    Description = PostgreSQL ODBC driver

    Driver=/usr/lib64/psqlodbcw.so

    CommLog = 1

    Debug = 0

    FileUsage = 1

    My configured for /u01/app/oracle/product/11.2.0/xe/hs/admin/initPostgreSQL.ora

    HS_FDS_CONNECT_INFO = PostgreSQL

    HS_FDS_TRACE_LEVEL = 0

    HS_FDS_SHAREABLE_NAME = /usr/lib64/libodbcpsql.so

    Set ODBCINI=/etc/odbc.ini

    My configured for /u01/app/oracle/product/11.2.0/xe/network/admin/listener.ora

    Listener =

    (ADDRESS = (PROTOCOL = TCP) (HOST = oracle-poc)(PORT = 1521))

    SID_LIST_LISTENER =

    (SID_LIST =

    (SID_DESC =

    (SID_NAME = PostgreSQL)

    (ORACLE_HOME=/u01/app/oracle/product/11.2.0/xe)

    (PROGRAM = dg4odbc)

    (ENVS="LD_LIBRARY_PATH=/usr/lib64:/u01/app/oracle/product/11.2.0/xe/lib')

    )

    )

    My configured for /u01/app/oracle/product/11.2.0/xe/network/admin/tnsname.ora

    PostgreSQL =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = oracle-poc)(PORT = 1521))

    (CONNECT_DATA =

    (SID = PostgreSQL)

    )

    (HS = OK)

    )

    I'm trying to created public database link:

    CREATE DATABASE LINK PUBLIC 'orapos' CONNECT to 'HIS' IDENTIFIED BY 'password' USING 'PostgreSQL ';

    When I used tnsping

    [root@oracle-poc admin] # tnsping PostgreSQL

    AMT Ping utility for Linux: Version 11.2.0.2.0 - Production on May 16, 2013 20:34:19

    Copyright (c) 1997, 2011, Oracle.  All rights reserved.

    Use settings files:

    /U01/app/Oracle/product/11.2.0/XE/network/admin/SQLNET.ora

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = oracle-poc)(PORT = 1521)) (CONNECT_DATA = (SID = PostgreSQL)) (HS = OK))

    OK (0 msec)

    and finally, I try to use the database link:

    "SQL > select * from tabel2"@orapos ".

    2;

    Select * from 'tabel2"@orapos '.

    *

    ERROR on line 1:

    ORA-28500: connection between ORACLE and a non-Oracle system has sent this message:

    ORA-02063: preceding the line of ORAPOS

    What wrong with my setup?

    Thank you and best regards,

    Daniel

    Daniel,

    The problem is that you are using the ODBC Postgres driver for the HS_FDS_SHAREABLE_NAME parameter, but this must be an ODBC driver manager and not the driver ODBC Psotgres.
    Go to the.

    http://www.unixODBC.org/

    Click the 'Download' and follow the instructions to download the 2.3.1 pilot and make libraries and programs.

    Once this is done, then use the driver as parameter HS_FDS_SHAREABLE_NAME Manager, for example-

    HS_FDS_SHAREABLE_NAME =/home/odbc64/unixODBC/2.3.1/lib/libodbc.so

    Depending on where you install it.

    Kind regards

    Mike

  • error with DG4ODBC implementing connectivity to oracle for IBM iSeries AS400 version V7R1

    Hello

    I have linux Enterprise 64-bit database hosting Oracle 11 GR 2 64-bit (11.2.0.1).  I have access to IBM iSeries AS400 version V7R1.  I'm trying to connect to IBM iSeries of Oracle database with ODBC connectivity using the database link.  Here's what I did.

    Host (Linux) database installed iSeriesAccess - 7.1.0 - 1.0.x86_64.rpm provided by IBM.

    My odbcinst.ini file has the following entries:

    [PostgreSQL]

    Description = ODBC for PostgreSQL

    Driver = /usr/lib/libodbcpsql.so

    Setup = /usr/lib/libodbcpsqlS.so

    FileUsage = 1

    [iSeries Access ODBC Driver]

    Description = iSeries Access for Linux ODBC Driver

    Driver = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so

    Setup = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so

    Note 1 = if you use unixODBC-2.2.11 or later and you want ODBC 32 and 64-bit DSN, pilots to share

    Note 2 = the following Driver64/Setup64 keywords provide which support.

    Driver64 = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so

    Setup64 = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so

    Thread = 2

    DontDLClose = 1

    UsageCount = 1

    [iSeries Access ODBC Driver 64-bit]

    Description = iSeries Access for Linux 64 - bit ODBC Driver

    Driver = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so

    Setup = /opt/ibm/iSeriesAccess/lib64/libcwbodbcs.so

    Thread = 2

    DontDLClose = 1

    UsageCount = 1

    The odbc.ini contains the following entries:

    [ODBC data sources]

    dg4odbc = connection to db2

    [dg4odbc]

    Driver = /opt/ibm/iSeriesAccess/lib64/libcwbodbc.so

    Description = iSeries Access for Linux ODBC Driver

    LogonID =

    Password =

    Address = (IBM host, IP address)

    location = Vm520

    noprompt = true

    System = (IBM host, IP address)

    UNICODE = UTF-8

    Naming = 0

    ConnectionType = 0

    CommitMode = 2

    ExtendedDynamic = 0

    AllowDataCompression = 1

    LibraryView = 0

    AllowUnsupportedChar = 0

    ForceTranslation = 0

    Trace = 0

    made sure I was able to connect via ODBC and DSN using the following command:

    isql dg4odbc oracle oracle1 - v

    +---------------------------------------+

    | Connected!                            |

    |                                       |

    | SQL query |

    | help [tablename] |

    | quit                                  |

    |                                       |

    +---------------------------------------+

    SQL >

    SQLRowCount Returns-1

    600 lines read

    SQL >

    could query the table in a library on AS400.

    The $ORACLE_HOME/hs/admin/initdg4odbc.ora includes the following:

    # This is an example of initialization file of the agent that contains the HS settings

    # necessary for the database to ODBC gateway

    #

    # HS init parameters

    #

    HS_FDS_CONNECT_INFO = dg4odbc

    HS_FDS_TRACE_LEVEL = off

    HS_FDS_SHAREABLE_NAME=/etc/newlib/libodbc.so

    HS_FDS_TRACE_LEVEL = 255

    HS_FDS_SUPPORT_STATISTICS = FALSE

    #

    # ODBC specific environment variables

    #

    Set ODBCINI=/etc/odbc.ini

    #

    # Required for the non-Oracle system environment variables

    #

    The listener entries are as follows:

    (SID_DESC =

    (SID_NAME = dg4odbc)

    (ORACLE_HOME = opt/oracle/dbs/product/11.2.0/dbhome_1)

    (PROGRAM = dg4odbc)

    )

    Stopped and started the listener.

    The TNS entry is as follows:

    armcdb2 =

    (DESCRIPTION =

    (ADDRESS = (PROTOCOL = TCP) (HOST = vmw - dev - rmsdb.xxx.vmc)(PORT = 1521))

    (CONNECT_DATA =

    (SID = dg4odbc)

    )

    (HS = OK)

    )

    Pourriez tnsping:

    Tnsping armcdb2 Oracle@rmsdev[/opt/Oracle/DBs/product/11.2.0/dbhome_1/network/admin]$

    AMT Ping utility for Linux: Version 11.2.0.1.0 - Production on July 11, 2013 16:01:23

    Copyright (c) 1997, 2009, Oracle.  All rights reserved.

    Use settings files:

    /opt/Oracle/DBs/product/11.2.0/dbhome_1/network/admin/SQLNET.ora

    TNSNAMES adapter used to resolve the alias

    Try to contact (DESCRIPTION = (ADDRESS = (PROTOCOL = TCP) (HOST = vmw - dev - rmsdb.xxx.vmc)(PORT = 1521)) (CONNECT_DATA = (SID = dg4odbc)) (HS = OK))

    OK (0 msec)

    create a link from public database as follows:

    SQL > create database link samplink connect to 'oracle' identified by 'oracle1' with 'armcdb2 ';

    Database link created.

    When I run a select query I get as follows:

    SQL > select * from mdiaz. AREMAIL@SampLink;

    Select * from mdiaz. AREMAIL@SampLink

    *

    ERROR on line 1:

    ORA-28500: connection between ORACLE and a non-Oracle system has sent this message:

    408

    Here is a sample track of dg4odbc:

    Oracle Corporation - Thursday 11 July 2013 16:06:03.627

    Heterogeneous Agent release

    11.2.0.1.0

    Oracle Corporation - Thursday 11 July 2013 16:06:03.627

    Version 11.2.0.1.0

    Hgogprd entries

    HOSGIP to 'HS_FDS_TRACE_LEVEL' returned '255 '.

    Hgosdip entries

    default assignment of 50 HS_OPEN_CURSORS

    setting HS_FDS_RECOVERY_ACCOUNT or 'RECOVER '.

    HS_FDS_RECOVERY_PWD layout to the default

    default HS_FDS_TRANSACTION_LOG of HS_TRANSACTION_LOG layout

    HS_IDLE_TIMEOUT layout to the default 0 value

    layout by default HS_FDS_TRANSACTION_ISOLATION of "READ_COMMITTED".

    layout by default «AL32UTF8» HS_NLS_NCHAR

    layout HS_FDS_TIMESTAMP_MAPPING default 'DATE '.

    layout HS_FDS_DATE_MAPPING default 'DATE '.

    layout HS_RPC_FETCH_REBLOCKING failure to 'ON '.

    HS_FDS_FETCH_ROWS layout without '100 '.

    parameter HS_FDS_RESULTSET_SUPPORT default 'FALSE '.

    parameter HS_FDS_RSET_RETURN_ROWCOUNT default 'FALSE '.

    parameter HS_FDS_PROC_IS_FUNC default 'FALSE '.

    parameter HS_FDS_CHARACTER_SEMANTICS default 'FALSE '.

    parameter HS_FDS_MAP_NCHAR if there is no 'TRUE '.

    setting HS_NLS_DATE_FORMAT or 'YYYY-MM-DD HH24:MI:SS ".

    parameter HS_FDS_REPORT_REAL_AS_DOUBLE default 'FALSE '.

    HS_LONG_PIECE_TRANSFER_SIZE layout without "65536".

    parameter HS_SQL_HANDLE_STMT_REUSE default 'FALSE '.

    parameter HS_FDS_QUERY_DRIVER if there is no 'TRUE '.

    HOSGIP returned the value 'FALSE' to HS_FDS_SUPPORT_STATISTICS

    The HS_FDS_QUOTE_IDENTIFIER parameter is not defined

    setting in HS_KEEP_REMOTE_COLUMN_SIZE if 'OFF '.

    parameter HS_FDS_GRAPHIC_TO_MBCS default 'FALSE '.

    parameter HS_FDS_MBCS_TO_GRAPHIC default 'FALSE '.

    Default value of 64 assumed for HS_FDS_SQLLEN_INTERPRETATION

    HS_CALL_NAME_ISP layout "gtw$: SQLTables; GTW$: SQLColumns. GTW$: SQLPrimaryKeys. GTW$: SQLForeignKeys. GTW$: SQLProcedures. GTW$: SQLStatistics; "gtw$: SQLGetInfo.

    parameter HS_FDS_DELAYED_OPEN if there is no 'TRUE '.

    HS_FDS_WORKAROUNDS layout by default "0".

    Release of hgosdip, rc = 0

    ORACLE_SID is "dg4odbc.

    Product information:

    Port RLS / Upd:1 / 0 PrdStat:0

    Agent: Oracle Database Gateway for ODBC

    : Installation

    Class: ODBC, ClassVsn:11.2.0.1.0_0008, Instance: dg4odbc

    Release of hgogprd, rc = 0

    hostmstr: 0: HOA after hoagprd

    hostmstr: 0: HOA before hoainit

    Hgoinit entries

    HOCXU_COMP_CSET = 1

    HOCXU_DRV_CSET = 871

    HOCXU_DRV_NCHAR = 873

    HOCXU_DB_CSET = 871

    HOCXU_SEM_VER = 112000

    Entry hgolofn to 2013/07/11-16: 06:03

    HOSGIP to 'HS_FDS_SHAREABLE_NAME' returned ' / etc/newlib/libodbc.so '.

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLAllocHandle

    symbol_peflctx = 0xaab7c2f0

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLBindCol

    symbol_peflctx = 0xaab7c9d0

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLBindParameter

    symbol_peflctx = 0xaab7cb6c

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLCancel

    symbol_peflctx = 0xaab7d416

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLDescribeParam

    symbol_peflctx = 0xaab7f7dc

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLDisconnect

    symbol_peflctx = 0xaab7f978

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLEndTran

    symbol_peflctx = 0xaab7fe42

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLExecute

    symbol_peflctx = 0xaab808ac

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLFetch

    symbol_peflctx = 0xaab80b5c

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLFreeHandle

    symbol_peflctx = 0xaab816aa

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLFreeStmt

    symbol_peflctx = 0xaab82144

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetData

    symbol_peflctx = 0xaab83ad8

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetEnvAttr

    symbol_peflctx = 0xaab84e42

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetFunctions

    symbol_peflctx = 0xaab84fce

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLMoreResults

    symbol_peflctx = 0xaab85a0a

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLNumResultCols

    symbol_peflctx = 0xaab85fba

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLParamData

    symbol_peflctx = 0xaab86102

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLPutData

    symbol_peflctx = 0xaab871fc

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLRowCount

    symbol_peflctx = 0xaab87364

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLSetEnvAttr

    symbol_peflctx = 0xaab89054

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLSetDescRec

    symbol_peflctx = 0xaab88e20

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLColAttributeW

    symbol_peflctx = 0xaab7d6ba

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLColumnsW

    symbol_peflctx = 0xaab7e264

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLConnectW

    symbol_peflctx = 0xaab7e6b4

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLDescribeColW

    symbol_peflctx = 0xaab7f39e

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLDriverConnectW

    symbol_peflctx = 0xaab7fa9a

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLExecDirectW

    symbol_peflctx = 0xaab805e6

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLForeignKeysW

    symbol_peflctx = 0xaab80de6

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetConnectAttrW

    symbol_peflctx = 0xaab82714

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetDescFieldW

    symbol_peflctx = 0xaab83c76

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetDescRecW

    symbol_peflctx = 0xaab83fbe

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetDiagFieldW

    symbol_peflctx = 0xaab8448a

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetDiagRecW

    symbol_peflctx = 0xaab84916

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetInfoW

    symbol_peflctx = 0xaab85136

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetStmtAttrW

    symbol_peflctx = 0xaab85456

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLGetTypeInfoW

    symbol_peflctx = 0xaab8576e

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLPrepareW

    symbol_peflctx = 0xaab863b0

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLPrimaryKeysW

    symbol_peflctx = 0xaab8667c

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLProcedureColumnsW

    symbol_peflctx = 0xaab86a14

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLProceduresW

    symbol_peflctx = 0xaab86e64

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLSetConnectAttrW

    symbol_peflctx = 0xaab874ac

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLSetStmtAttrW

    symbol_peflctx = 0xaab896c8

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLSetDescFieldW

    symbol_peflctx = 0xaab88b00

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLStatisticsW

    symbol_peflctx = 0xaab89e64

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Entry hgolofns to 2013/07/11-16: 06:03

    LIBNAME=/etc/newlib/libodbc.so, funcname is SQLTablesW

    symbol_peflctx = 0xaab8a668

    hoaerr:0

    Out of hgolofns to 2013/07/11-16: 06:03

    Release of hgolofn, rc = 0 to 2013/07/11-16: 06:03

    HOSGIP to 'HS_OPEN_CURSORS' returned '50 '.

    HOSGIP to 'HS_FDS_FETCH_ROWS' returned '100 '.

    HOSGIP for "HS_LONG_PIECE_TRANSFER_SIZE" returned "65536".

    HOSGIP to 'HS_NLS_NUMERIC_CHARACTER' returned '. "

    HOSGIP to 'HS_KEEP_REMOTE_COLUMN_SIZE' returned 'OFF '.

    HOSGIP for "HS_FDS_DELAYED_OPEN" returns 'TRUE '.

    HOSGIP to 'HS_FDS_WORKAROUNDS' returned '0 '.

    HOSGIP to 'HS_FDS_MBCS_TO_GRAPHIC' returned 'FALSE '.

    HOSGIP to 'HS_FDS_GRAPHIC_TO_MBCS' returned 'FALSE '.

    Invalid value of 64 for HS_FDS_SQLLEN_INTERPRETATION

    treat_SQLLEN_as_compiled = 1

    Release of hgoinit, rc = 0 to 2013/07/11-16: 06:03

    hostmstr: 0: HOA after hoainit

    hostmstr: 0: HOA before hoalgon

    Entry hgolgon to 2013/07/11-16: 06:03

    name: oracle, reco:0, tflag:0

    Entry hgosuec to 2013/07/11-16: 06:03

    Release of hgosuec, rc = 0 to 2013/07/11-16: 06:03

    Entry hgopoer to 2013/07/11-16: 06:03

    hgopoer, line 233: had native error 408 and sqlstate 410; message follows...

    408

    Release of hgopoer, rc = 0 to 2013/07/11-16: 06:03

    hgolgon, line 193: calling SQLSetConnectAttr obtained sqlstate 410

    Out of hgolgon, rc = 28500 to 2013/07/11-16: 06:03 with the ptr error FILE: hgolgon.c LINE: 193 FUNCTION: hgolgon() ID:Connection attribute: TRACE

    hostmstr: 0: HOA after hoalgon

    The RPC nscontrol (0), rc = 0

    hostmstr: 0: CPP before release Agent

    hostmstr: 0: HOA before hoaexit

    Entry hgoexit to 2013/07/11-16: 06:03

    Release of hgoexit, rc = 0

    hostmstr: 0: HOA after hoaexit

    hostmstr: 0: CPP after release Agent

    I have looked up on the forums of Oracle errors and could not do any help anywhere.

    Can someone kindly help where I'm wrong?

    Thank you

    RAM.

    You have activated the gateway trace level 255 (HS_FDS_TRACE_LEVEL = 255) which includes also ODBC calls but there is no reference in your file odbc.ini to trace odbc library and it seems that the trace ODBC lib is not found in the ODBC driver manager lib directory.

    Test without bridge tracing turned on (just remove the parameter HS_FDS_TRACE_LEVEL = 255).

    In addition, I recommend to add to your gateway init file:

    HS_FDS_FETCH_ROWS = 1 (as the iSeries ODBC is not supported in bulk pick)

    and

    HS_NLS_NCHAR = UCS2

    -Klaus

  • Format of the connection string to connect to Oracle DB via LDAP

    Hello

    I have an Oracle database and its details are configured in LDAP. I have the c# code that I want to connect to Oracle DB using LDAP details. So I wrote the code to connect to the Oracle DB, but not able to connect. Implementation error at the con. Open() statement: "ORA-12154: TNS: could not resolve the connect identifier specified.

    Code:
    --------
    String s = "Data Source = @ldap://abc.pq.xyz.com: 11389/myldap, cn = OracleContext, dc = pq, dc = xyz, dc = com; User Id = MyDB; Password = MyPass";

    Con OracleConnection = new OracleConnection (constr.);
    con. Open();

    I need help in the formation of the connection string.

    user8786648 wrote:
    Hello

    I have an Oracle database and its details are configured in LDAP. I have the c# code that I want to connect to Oracle DB using LDAP details. So I wrote the code to connect to the Oracle DB, but not able to connect. Implementation error at the con. Open() statement: "ORA-12154: TNS: could not resolve the connect identifier specified.

    Code:
    --------
    String s = "Data Source = @ldap://xyz.us.oracle.com: 11389/xyz_ldap, cn = OracleContext, dc =, dc = oracle, dc = com; User Id = xyz; Password = xyz";

    Con OracleConnection = new OracleConnection (constr.);
    con. Open();

    I need help in the formation of the connection string.

    This isn't how you use LDAP for Oracle name resolution.

    You must configure the LDAP protocol. ORA and SQLNET. ORA files properly.

    For example, you can review the LDAP protocol. Documentation of ORA here:

    http://docs.Oracle.com/CD/E11882_01/network.112/e10835/LDAP.htm#i500397

    And the SQLNET. Documentation of ORA here:

    http://docs.Oracle.com/CD/E11882_01/network.112/e10835/SQLNET.htm#i500318

    A quick search on the terms "example of oracle ldap.ora", shot to the top of several examples.

    Also, if these are real values that you posted in your example of a connection string, you can change.

  • Oracle connection non-oracle

    I have unixodbc and freetds. Since isql I can connect to ms sql server. Oracle sqlplus, I get:

    SQL > SELECT * FROM 'Banks"@EIMS;
    SELECT * FROM 'Banks"@EIMS '.
    *
    ERROR on line 1:
    ORA-28500: connection between ORACLE and a non-Oracle system has sent this message:
    [unixODBC] [FreeTDS] [SQL Server] Unable to connect to data
    source [unixODBC] [SQL Server] Adaptive Server [FreeTDS] login
    has failed [unixODBC] [FreeTDS] [SQL Server] Server unexpected EOF
    ORA-02063: preceding 2 lines of EIMS

    Post the odbc.ini file that you use.
    This may look like the wrong version of the TDS protocol is used with Dg4ODBC and FreeTDS.

    Published by: kgronau on 27 Sep, 2012 12:47

    Add
    TDS_Version = 8.0
    QuotedId = YES

    to your odbc.ini

  • How to connect to Oracle Form Builder - Oracle Developer Suite 10 g - Windows 7

    Hi brothers and sisters.

    Hope that you are well. I installed Oracle Developer Suite 10 g on Windows 7 successfully and that it works correctly. But when I connect to Oracle Form Builder using Connect window asking:

    a. user name of
    b. password
    c. database

    a message box appears: "ORA-12154: TNS: could not resolve the connect identifier specified '.

    I check my String to connect with: ' SELECT * FROM database of v$ ', but the problem remains the same.

    Please help me how can I connect to Oracle Form Builder.

    Noor

    Hello

    Please use Net Configuration Wizard or set tnsnames.ora with string and computer name to connect.

    NET Configuration Assistant.
    When its open then go to.
    * The local Net Service name configuration.
    * Click Next.
    * Add.
    * Click Next.
    * Name service - Type here connect the String which is XE or any connection string.
    * TCP.
    * Click Next.
    Host name - enter computer name or Ip address.
    * Yes, perform a test.
    you enter the right password and username here.

    Note:-your database should be Up if it's not high, it will be by the same error please start your database first.
    Sarah

  • I changed the name of the computer, now I can not connect to Oracle SQL Developer

    Hello my friends!

    Everything worked perfectly until I needed to change the name of the computer and now I can no longer connect in Oracle SQL Developer 3.1.
    I restarted Oracle 11 g by stopping and restarting. The order message said stop and start successfully. This tells me Oracle 11 g Express is running, but I can no longer
    connect to Oracle SQL Developer 3.1.

    How can I fix?

    Thank you all!

    J man,

    I'm not a pro at Oracle XE, but I would say that this is not a problem of SQL * Developer, but the listener of OracleXE.
    Now, I'm in total guessing game mode:
    find the "listener.ora" file in your Oracle installation (from [url http://docs.oracle.com/cd/E17781_01/server.112/e18804/network.htm#ADMQS168] this document is c:\oraclexe\app\oracle\product\11.2.0\server\NETWORK\ADMIN\listener.ora
    I'm sure that it is coded in the old hostname, simply replace it with the new host name.
    Restart your receiver and please try to connect again.

    HTH,
    Berx

  • Connection from Oracle to DB2 LUW and Asian data insertion/selection.

    Hello

    I have configured the connectivity between Oracle and DB2 LUW, using DG40DBC but my requirement is to see the characters Asian (Chinese, Japanese, etc). Then, when I select the data through DB DB2 link I get of the question marks (?). We need to change the settings in the configuration files to support this language?

    Any help is very appreciated!

    Thank you
    Steve.

    Isql instruction is not able to display characters unicode is partly justified. In my (Linux with LANG value UTF8) env it displays Chinese and Japanese characters.

    You can also try to use the unicode equivalent to "isql" called "iusql. In addition, please provide the character set of your DB2 database.

    Published by: kgronau on January 16, 2012 06:31

    Also DG4ODBC displays correctly using your ODBC from above and these DG4ODBC settings:
    HS_FDS_SHAREABLE_NAME =/home/odbc64/unixODBC/2.3/lib/libodbc.so
    HS_NLS_NCHAR = UCS2
    HS_LANGUAGE = AMERICAN_AMERICA. AL32UTF8

    For a DB2 database using this character set parameter:
    Database code page = 1208
    Database of codeset = UTF - 8

  • Connection to Oracle, Microsoft SqlServer with unixODBC and TDSodbc

    Hello

    I'm working on a requirement to connect from Oracle 11 g DB for Microsoft SQL Server 2008. After serching for the options available on the web I found the follwing link

    Connectivity ODBC - http://www.dbapool.com/Articles/06280701.html using UNIX ODBC and FreeTDS

    I have configured everying as stated in the article, but I'm stuck to test the connection.

    After a few days work, I am able to do successful isql connection but my earpiece and tns behave odd.

    I configured and started the listener called mstest but when I started it says it does not support all served

    Here's my listener.ora


    MSTEST =
    (DESCRIPTION_LIST =
    (DESCRIPTION =
    (ADDRESS_LIST =
    (ADDRESS = (PROTOCOL = TCP)(HOST=xxxxx.xxx.xxxx.com) (PORT = 1523))
    )
    )
    )


    SID_LIST_MSTEST
    (SID_LIST =
    (SID_DESC =
    (ORACLE_HOME = usr/oracle/product/11.2.0.2)
    (SID_NAME = mstest)
    (PROGRAM = dg4odbc)-> I changed to dg4odbc hsodbc program since in the 11.2.0.2
    )
    )



    Summary of endpoints listening...
    (DESCRIPTION = (ADDRESS = (PROTOCOL = tcp)(HOST=xxxx.xxx.xxx.com) (PORT = 1523)))
    The listener supports no services
    The command completed successfully


    any help is very appreciated.

    Thank you
    Steve.

    Edited by: user8927749 January 6, 2012 06:54

    Steve,
    The configuration files look all right, but can do you that there is at least a space at the beginning of each line except the first in each case.
    They lost when you paste in the thread, but please check.
    You can also view the listener log to see if this gives errors or messages about why he has no services?

    Kind regards
    Mike

  • Connect to oracle 10g db using shell linux files

    Hello

    I need to connect to oracle 10g db using shell linux files. Already I have username, password, hoststring and details is SCOTT/TIGER@TESTDB.
    I need to pass the values of this 3 (SCOTT/TIGER@TESTDB) at runtime only (i.e.) as PARAMETERS. Suppose that I'll give the wrong password or username, I need to capture this error in 1file and send the error details to our dba teams mail identification. Identification of email as [email protected] if its success, I have need to write the 'success' message in 1 file and no need to send a mail to the group.

    Can U please help to solve this problem.

    Thanks and greetings
    Sivaraman.

    double post: Re: connect oracle using shell with the error log

    Please do not cross post.

Maybe you are looking for

  • Passwords for e-mail?

    Hello I have a Motorola Defy. I like it. On my email accounts, messages that are launched automatically. That means that anyone who manages my phone can just type and read them. I want their only show as mail - only after that I put my password in. I

  • Driver missing "Network controller"

  • 2897 - 93ü vs 2723-GU1

  • Include .vi with DAQmx .vi SERIES

    Hey everybody, I searched the forums looking for examples of the integration of two .vi, but are short on key words to search for. So here's my question. I have two separate .vi that operate independently. The first collects the DAQmx data and writes

  • Scale object with Panel programmatically?

    Is there a way to activate the 'Object of scale with Panel' property of an object to front panel by programming?  It doesn't seem to be possible, but I wanted to check before you give up and do a hack to find a different solution.