Throws Core Dump for OCISessionBegin() on Linux for Oracle Client v10.2.0.2

hi,
The OCI method, OCISessionBegin() is throwing an core dump on 10g client in Linux on C++, but the same code works fine for 8i and 9i client. Core dumps for 10g Client. 10g tnsnames.ora file is same as of 9i. I just debeggued with the core and says failing in OCISessionBegin() method. I would like to know is there any problem with Oracle Client v10.2.0.2? or how does i can solve the issue? appriciate a quick help in this regard.
Thanks,
Sreeni

Have you looked in the Knowledge Base information at metalink? That would be the place to start.
If that does not work then the next step would be to remove this thread and post in the OCI - OCCI forum where there are people that can actually help you.

Similar Messages

  • How to turn off core dump for WebLogic 8.1 running on AIX 5.3

    Hi there,
    Is there a way we can turn off core dumping for WebLogic 8.1 running on AIX 5.3?
    Thank you.
    Regards,
    Surender

    Hi Surender,
    Please add the following Flag in the JAVA_OPTIONS of your servers StartScript like following :
    JAVA_OPTIONS=${JAVA_OPTIONS}     -Xdump:system:none
    Thanks
    Jay SenSharma
    http://jaysensharma.wordpress.com/2009/12/30/jvm-crash-and-native-outofmemory/ (WebLogic Wonders Are Here)

  • How can i download the latest dumps for oracle 10g

    how can i download the latest dumps for oracle 10g

    It's NOT permissible to use Oracle dumps for passing certification exams!
    Please, refer to below links for more information about "using dumps"
    http://www.certguard.com/braindumps.asp
    http://ivan.kartik.sk/index.php?show_article=39
    Kamran Agayev A. (10g OCP)
    http://kamranagayev.wordpress.com
    [Step by Step install Oracle on Linux and Automate the installation using Shell Script |http://kamranagayev.wordpress.com/2009/05/01/step-by-step-installing-oracle-database-10g-release-2-on-linux-centos-and-automate-the-installation-using-linux-shell-script/]

  • Are there any licencing costs for Oracle Clients ?

    11.2/Solaris 10
    In my shop, we only install Oracle Client of type Instaclient (not the 'Administrator' type). Instaclient is very basic ; it only has some basic library files and sqlplus binary (no tnsping , exp, imp,...etc). I think they are doing this for saving licence costs.
    Does oracle actually charge for Oracle Client installations ? If so, is there a significant cost difference between 'Administrator' type and 'Instaclient' type ?

    Max wrote:
    11.2/Solaris 10
    In my shop, we only install Oracle Client of type Instaclient (not the 'Administrator' type). Instaclient is very basic ; it only has some basic library files and sqlplus binary (no tnsping , exp, imp,...etc). I think they are doing this for saving licence costs.
    Does oracle actually charge for Oracle Client installations ? If so, is there a significant cost difference between 'Administrator' type and 'Instaclient' type ?no

  • How do I set-up on %ORACLE_HOME%\bin for Oracle client on Windows XP

    How do I set-up on %ORACLE_HOME%\bin for Oracle client on Windows XP?
    The Oracle bin directory is: C:\oracle\ora90\bin
    Thank you!

    If you are asking how to setup the resolution of %ORACLE_HOME%\bin to C:\oracle\ora90\bin, you must create a system environment variable called ORACLE_HOME that is set to a value of C:\oracle\ora90.
    Kind regards,
    Russ

  • Where to running SQL Scripts after install of ODAC for Oracle Client?

    I just installed ODAC for Oracle Client on a windows server, that runs a sql server database, for developers to connect a web app to an Oracle/Unix database. The install states to run SQL scripts located in the $ORACLE_HOME\ASP.NET\SQL directory after the install. I'm not sure where to run them? On the ORACLE DB on the Unix server? If someone could bring me up to speed I would appreciate it. Thanks.

    If I do run the scripts, do you know what user they should be run as? The developer are using ASP.NET for connectivity.
    Why there is no Oracle Expert answer this simple question? ?
    After ODAC 11.1.0.7.20 installation completed, there is a message in the last screen:
    *"Run the SQL script located in c:\app\Administrator\product\11.1.0\client_1\ASP.NET\SQL directory for a new installation or an upgrade of Oracle Providers for ASP.NET"*
    The question is: How to run these 9 SQL scripts ?
    In SQL*Plus, which oracle user should I connect to in order to run these 9 scrips, including:
    InstallAllOracleASPNETProviders.sql
    InstallOracleASPNETCommon.sql
    InstallOracleMembership.sql
    InstallOraclePersonalization.sql
    InstallOracleProfile.sql
    InstallOracleRoles.sql
    InstallOracleSessionState.sql
    InstallOracleSiteMap.sql
    InstallOracleWebEvents.sql

  • What do I need to install when I install oralce in linux and oracle client

    What do I need to install when I install oralce in linux and oracle client in windows?
    I want to connect oracle from windows to Linux, what do I need to install or setup? thanks.

    Are you trying to install the DB on Linux from your Windows Box? if so, you need to have an XWindows client on your client. You have to SSH or Telnet into the box, set your DISPLAY variable. In fact, it is all in your documentation for the DB install. We still don't understand what you are exactly asking.
    Do you have direct access to your Linux machine? If so, and it has a graphical GUI, then you can find install guides for most flavors of Linux at dizwell.com. His are most excellent and show examples, but do not go over the XWindows problem. You would have to resolve that first.
    A free XWindows environment for Windows is Cygwin.
    Once the DB is running on Linux then all you do is create a TNS entry on it on your client and it connects. It is the same as setting up a connection to connect to Oracle on a Windows box.

  • JNI - core dump - internal error on linux after calling Java method

    I'm getting a core dump after calling athe main statric method using JNNI.
    On linux.
    I can get the class id correcttly but when I attempt to call the method it craches with an internal error , anyone know why it would crash instead of just not work.
    if(cls)
        main_methodID = env->GetStaticMethodID(cls, "main", "([Ljava/lang/String;)V");
           printf("Class Found Successfully\n");
      else
        printf ( "cls not found\n");
        return 0;
      if(main_methodID)
              jstring first_str = env->NewStringUTF("The First String");//create string
              jobjectArray args = (jobjectArray)env->NewObjectArray(1,env->FindClass("java/lang/String"), first_str);//new array with 2 elements
                   env->SetObjectArrayElement(args, 2, first_str);//insert the second string into index 1 of the array
              jstring second_str = env->NewStringUTF("The Second String");//create string
              env->SetObjectArrayElement(args, 1, second_str);//insert the second string into index 1 of the array
         env->CallStaticVoidMethod(cls, main_methodID, args);//pass the array to the Java main method
                                  The JAVA method is
      public static void main(String[] args) {
        System.out.println("Main method in Framework");
            Framework framework = new Framework();
                                 

    I see yere points but what I see on linux is it makes it to the constructor of the Java object and somewhere afterwards it bails out, the Java app does work alone. It appears to have problems initializing the JFrame, could there be a problem with the Java inheritance when a JVM is invoked throurgh native invocation??
    Here's some of the Java stuff
    public class Framework extends WindowAdapter {
        public int numWindows = 0;
        private Point lastLocation = null;
        private int maxX = 500;
        private int maxY = 500;
        public Framework() {
            System.out.println("JAVA Framework cnst");//GETTING HERE
            makeNewWindow();
        public void makeNewWindow() {
            System.out.println("JAVA makeWindow"); //GETTING HERE
            JFrame frame = new MyFrame(this); //NOT GETTING HERE!!!!!!!!!
            numWindows++;
            System.out.println("Number of windows: " + numWindows);
            System.out.println("Frame location: " + lastLocation);
            frame.setVisible(true);
            System.out.println("Post Java set frame visible");
        public static void main(String[] args) {
        System.out.println("Main method in Framework");
            Framework framework = new Framework();//GETTING HERE
    class MyFrame extends JFrame {
        protected Dimension defaultSize = new Dimension(200, 200);
        protected Framework framework = null;
        public MyFrame(Framework controller) {
            super("New Frame");
            System.out.println("MyFrame cnst ");//NOT GETTING HERE!!!!!!
            framework = controller;
            setDefaultCloseOperation(DISPOSE_ON_CLOSE);
            addWindowListener(framework);
            JMenu menu = new JMenu("Window");
            menu.setMnemonic(KeyEvent.VK_W);
           setSize(defaultSize);
    }

  • Can't Recorde Response file for Oracle client 11.2.0.3 windows 32bit

    Hello
    We are going to upgrade our Oracle client on our clients to 11.2.0.3. But I can not record a resopnsfile with setup.exe.
    Have Oracle removed this feature?
    Here's a dump from setup.exe -help
    There is no possibility to run setup.exe witch -record -destinationfile option
    Preparing to launch Oracle Universal Installer from C:\Users\Test\AppData\Local\
    Temp\OraInstall2013-01-14_02-12-48PM. Please wait ... Usage:
    setup [-options] [(<CommandLineVariable=Value>)*]
    Where options include:
    -clusterware oracle.crs,<crs version>
    Version of Cluster ready services installed.
    -crsLocation <Path>
    Used only for cluster installs, specifies the path to the crs home locat
    ion. Specifying this overrides CRS information obtained from central inventory.
    -invPtrLoc <full path of oraInst.loc>
    Unix only. To point to a different inventory location. The orainst.loc f
    ile contains:
    inventory_loc=<location of central inventory>
    inst_group=<>
    -jreLoc <location>
    Path where Java Runtime Environment is installed. OUI cannot be run with
    out it.
    -logLevel <level>
    To filter log messages that have a lesser priority level than <level>. V
    alid options are: severe, warning, info, config, fine, finer, finest, basic, gen
    eral, detailed, trace. The use of basic, general, detailed, trace is deprecated.
    -paramFile <location of file>
    Specify location of oraparam.ini file to be used by OUI.
    -responseFile <Path>
    Specifies the response file and path to use.
    -attachHome
    For attaching homes to the OUI inventory.
    -cfs
    Indicates that the Oracle home specified is on cluster file system (shar
    ed). This is mandatory when '-local' is specified so that Oracle Universal Insta
    ller can register the home appropriately into the inventory.
    -clone
    For making an Oracle Home copy match its current environment.
    -debug
    For getting the debug information from OUI.
    -detachHome
    For detaching homes from the OUI inventory without deleting inventory di
    rectory inside Oracle home.
    -enableRollingUpgrade
    Used in cluster environment, to enable upgrade of a product on a subset
    of nodes (on which the product was installed).
    -executeSysPrereqs
    Execute system pre-requisite checks and exit.
    -force
    Allowing silent mode installation into a non-empty directory.
    -help
    Displays above usage.
    -ignoreSysPrereqs
    For ignoring the results of the system pre-requisite checks.
    -local
    Performs the operation on the local node irrespective of the cluster nod
    es specified.
    -printdiskusage
    Log debug information for disk usage.
    -printmemory
    Log debug information for memory usage.
    -printtime
    Log debug information for time usage.
    -relink
    For performing relink actions on the oracle home
    Usage: -relink -maketargetsxml <location of maketargetsxml> [-makedepsx
    ml <location of makedepsxml>] [name=value]
    -silent
    For silent mode operations, the inputs can be a response file or a list
    of command line variable value pairs.
    -waitforcompletion
    Installer will wait for completion instead of spawning the java engine a
    nd exiting.
    -suppressPreCopyScript
    Suppress the execution of precopy script.
    -acceptUntrustedCertificates
    Accept untrusted certificates from a secure site.
    -suppressPostCopyScript
    Suppress the execution of postcopy script.
    -noconfig
    Do not execute config tools.
    -noconsole
    For suppressing display of messages to console. Console is not allocated
    -formCluster
    To install the Oracle clusterware in order to form the cluster.
    -remotecp <Path>
    Unix specific option. Used only for cluster installs, specifies the path
    to the remote copy program on the local cluster node.
    -remoteshell <Path>
    Unix specific option. Used only for cluster installs, specifies the path
    to the remote shell program on the local cluster node.
    -executePrereqs
    To execute only the prerequisite checks.
    -ignorePrereq
    To ignore running the prerequisite checks.
    -ignoreInternalDriverError
    To ignore any internal driver errors.
    -downloadUpdates
    To download updates only.
    -showProgress
    To show the installation progress on the console. This option is support
    ed only in case of silent installation.
    Command Line Variables Usage
    Command line variables are specified using <name=value>; for example:
    [ session: | compName: | compName:version: ]variableName=" valueOfVariable"]
    Session/Installer variables are specified using:
    [session:]varName=value
    Ex 1: session:ORACLE_HOME_NAME="OraHome"
    Ex 2: ORACLE_HOME_NAME="OraHome"
    The lookup order is session:varName then just varName. The session prefix is
    used to avoid ambiguity.
    Component variables are specified using:
    [compInternalName:[Version:]]varName
    Ex 1: oracle.comp1:1.0.1:varName="VarValue"
    Ex 2: oracle.comp1:varName="VarValue"
    The lookup order is compInternalName:Version:varName, then compInternalName:
    varName, then just varName.
    Please press Enter to exit...

    Hi,
    There is no record option with 11gR2.
    There is no need to use '-record' flag to record/save the response file. At Summary page of installation, 11gR2 installer provides option to save the response file. We can perfom the silent installation using this saved response file
    Unix:
    ./runInstaller -silent -responseFile <saved_response-file>
    Windows:
    c:\software\11.2.0.1\database\setup.exe -responseFile <saved_response-file>
    For more details, kindly refer
    11gR2 Install (Non-RAC): Understanding New Changes With All New 11.2 Installer (Doc ID 884232.1)
    4th point in the document explains about this
    Thanks,
    Krishna

  • ODBC Driver for Oracle Client 11.1.0.7

    Hi,
    I am using Oracle Client 11.1.0.7 .
    My application requires odbc Connection
    Where I can find the library file , as I didnt find any download on Oracle Website .
    Kindly help

    898763 wrote:
    Kindly reply , is there linux 64 bit download for the required versionDid you have a look for yourself??
    Why do I need to do the Googling for you??
    You don't even specify which Linux!!
    As per your question. I don't understand. You need ODBC for Oracle 11.1.0.7.
    What has this to do with Linux 64bit ??
    From Linux, simply install a client and use SQLnet, not??

  • Any compatibility issues for Oracle Client 10.2.0.4.0 and Snow Leopard?

    Now that Snow Leopard is out and in fact in my hands, are there any known compatibility issues relative to the Oracle client software that is available from:
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204macsoft.html
    Thanks.
    BTW, it might be worthwhile to know about the following web site:
    http://snowleopard.wikidot.com/
    and for someone from Oracle to post an appropriate listing there as that site is becoming known as a central resource for such queries.
    Marc

    Guys,
    I appreciate all of your replies, but:
    1. Just to be clear, I am talking about running the CLIENT (SQL*Plus) on Snow Leopard, which will connect to Oracle 11g, which is running on RHEL 5. I don't care in the least as to whether or not Oracle 11g will run on Snow Leopard. Today, I run the CLIENT on Leopard from the CLI and can connect to 11g on RHEL 5 just fine. I use the Actual Technologies ODBC driver (http://www.actualtechnologies.com/product_oracle.php) for queries in other applications and I have a similar query regarding Snow Leopard compatibility into them.
    2. @damorgan: Are you telling me that the client software that I can download from Oracle here:
    http://www.oracle.com/technology/software/products/database/oracle10g/htdocs/10204macsoft.html
    was written by Oracle and certified by Apple to run on Leopard (10.5)? I am curious, because today, it was Microsoft and not Apple that put forth the statement that Office 2008 is fine on Snow Leopard:
    http://www.officeformac.com/blog/Ready-for-Snow-Leopard
    Are you suggesting, as a parallel, that Apple did the certification of Office 2008 for Snow Leopard, not Microsoft? Or that Apple and not Cisco, will certify that Cisco's VPN client will work on Snow Leopard?
    Thanks,
    Marc

  • Installation of Pro-C for Oracle Clients

    I want to know if Pro C can work on Oracle 7 clients as well as Oracle 8 Clients ; Pro- C alone works on a desktop - NT/95 and it is the same with Oracle Client 7/8 but I am not able to Install Oracle 7 client along with Pro -C
    I get an Error " orainst caused an invalid pagefault in module oiexec.dll at 015f:ooae84fe "
    I would like to know if there we need to have new pro C versions for the Oracle 8 Clients ...
    can someone help ??
    null

    HI,
    When U are installing oracle, there is three options.
    1. server
    2. programmer
    3. client
    U chose last two. It will work.
    With regards,
    Boby Jose Thekkanath.

  • Core Dump when try to connect to oracle in Pro*C ( on HP)

    Hi ,
    I am getting 'Core Dump' at EXEC SQL Connect stmt in Pro*C. The program works fine on Solaris. Are there any changes needed in Makefile?
    Pls help.
    Thanks
    Nivedita

    I have this exact same problem with 2 MacBook Pro's both running 10.6.5
    I've double checked that the settings are identical on both machines, yet only one of the them can connect to the other using the Guest account. When the Guest account doesn't work and I use the registered user of the other machine, it connects fine. I just would like to be able to use the simple Drop Box function.

  • ODBC setup error for Oracle Client

    Hi,
    I'm trying to setup ODBC connection for my Oracle client while installing BO. Following are the steps I followed.
    1. Downloaded the Oracle Client from the link http://www.oracle.com/technetwork/database/features/instant-client/index-097480.html . From that downloaded two zip files. “Instant Client Package – Basic Lite" and “Instant Client Package – ODBC”. Extracted the Zip Files to the folder I created under C: as C:\Oracle\instantclient_11_2.
    2. Since I'm setting up in ODBC in windows 2008 64-bit R2. I was advised to install 32 bit . So in cmd prompt, from the location C:\Oracle\instantclient_11_2, ran odbc_install.
    3.Created the Environment variables as
    i) *TNS_ADMIN - C:\Oracle\instantclient_11_2*
    ii) *Oracle_Home - C:\Oracle\instantclient_11_2*
    iii) *Edited the PATH variable with ;C:\Oracle\instantclient_11_2*
    4. Created the tnsnames.ora file in C:\Oracle\instantclient_11_2. Its content are as follows.
    clarity_dev =
         (DESCRIPTION =
         (ADDRESS_LIST =
         (ADDRESS = (PROTOCOL = TCP)(HOST = claritydev.vip.its.ebay.com )(PORT = 1521))
         (CONNECT_DATA =
         (SID = clarity)
    5. From the folder %windir%\sysWOW64\odbacd32.exe, Opens ODBC Data Source Adminsitartor. In that I found my Oracle in instantclient_11_2 and added following details.
    Data Source Name : claritydev.vip.its.com
    TNS Service Name : clarity_dev
    User Id: clarity1
    When I test connect it, I get error *ORA-12154:*
    *     TNS:could not resolve the connect identifier specified*
    Could you please help, I've seen FAQs for this error, but couldn't find anything which solves. Is there any steps I'm missing? I've checked in DB properties. It uses SID not the Service Name.
    Thanks in Advance
    Sreeram

    Oh, zip files. Right. I usually use the installer.
    Try creating it yourself then and see if that does it. I don't normally use these zip files so I'm not sure if it goes somewhere else with them.

  • Latest patch set for oracle client 8.1.7

    hello,
    what is the latest patch set exactly for oracle 8.1.7.xx? I know that this version is desupported but I need this client for a third party application that we have in use.
    thanks
    katharina

    Patch 2376472 is the latest patch set for 8.1.7 which will bring you up to 8.1.7.4. It is still available on Metalink.

Maybe you are looking for

  • Error received while accessing a view made

    HI, I have made a view and registered it to the application. But in application, when i access the view , it gives the following error We detected an Error which may have occurred for one or more of the following reasons: Could not find 'Applet' name

  • How do I get Itunes 11.1? Problem with IOS 7

    To make room for the IOS 7 update on my iphone 4s I had to delete all my songs off my iphone. Once the update was complete I went to sync to itunes on my macbook to put the songs back on my Iphone. I got a notification on itunes saying it needed to u

  • Fault message mapping

    Hello, I have following scenario. Synch, RFC Sender - > XI---- >JDBC receiver. Also I have defined Fault message data type, message type and also createed Message Interface in which I specified Fault Message type. Now my question is. When an error oc

  • Event pool table

    Hi, I have S_NQ_EPT table in physical layer and enabling event pool table Tools--> Utilities-->Oracle Bi Event Tables. I have selected S_NQ_EPT table and given f recency that is 4 mins. So every 4 minutes entries are going to be deleted. For testing,

  • Can the Photoshop CS5 upgrade be installed on two pcs?

    I have photoshop CS2 installed on my desktop and have an upgrade to CS5 on the way. Someone told me that with current adobe products, it's ok to install a copy on your desktop and on your notebook, which is what I'd like to do with photoshop CS5. Is