Issue in oracle 10g thin XA driver with weblogic 7 SP5

Hi there,
We are using oracle 10g thin,thin XA drivers(10.2.0.3) with oracle 10g as back end database and weblogic 7 SP 5. We are getting maximum open cursors exceeded exception after some time.
The issue seems to be with "XAPrepared Statement Cache Size" property. Initially it was set to 5. When transactions are performed the database shows the count of open cursor to 300 which is the limit of open cursors set as database init params.
When we set cache size to zero, the issue disappears and the cursor count is around 45. Even if the statement cahe size is set to 1, after some transactions max open cursor exceeded exception arises.
Can som one elaborate the behavior of this property or the issue which underlies this.
Any help would be greatly appreciated
Regards

Hi there,
We are using oracle 10g thin,thin XA drivers(10.2.0.3) with oracle 10g as back end database and weblogic 7 SP 5. We are getting maximum open cursors exceeded exception after some time.
The issue seems to be with "XAPrepared Statement Cache Size" property. Initially it was set to 5. When transactions are performed the database shows the count of open cursor to 300 which is the limit of open cursors set as database init params.
When we set cache size to zero, the issue disappears and the cursor count is around 45. Even if the statement cahe size is set to 1, after some transactions max open cursor exceeded exception arises.
Can som one elaborate the behavior of this property or the issue which underlies this.
Any help would be greatly appreciated
Regards

Similar Messages

  • SetString/executeBatch fails in Oracle 10g OCI JDBC driver

    Hi,
    I am using Oracle 10g OCI jdbc driver for batch updates.
    Following is the the code that I am using
    import java.sql.*;
    import oracle.jdbc.*;
    import oracle.jdbc.pool.OracleDataSource;
    public class BatchUpdates
    public static void main(String[] args)
    Connection conn = null;
    Statement stmt = null;
    PreparedStatement pstmt = null;
    ResultSet rset = null;
    int i = 0;
    try
    String url = "jdbc:oracle:oci:@kctutf8";
    try {
    String url1 = System.getProperty("JDBC_URL");
    if (url1 != null)
    url = url1;
    } catch (Exception e) {
    OracleDataSource ods = new OracleDataSource();
    ods.setUser("kctuser");
    ods.setPassword("kana");
    ods.setURL(url);
    conn = ods.getConnection ();
    stmt = conn.createStatement();
    try { stmt.execute(
    "create table mytest_table (col1 number, col2 varchar2(20))");
    } catch (Exception e1) {}
    pstmt = conn.prepareStatement("insert into mytest_table values (?, ?)");
    pstmt.setInt(1, 1);
    pstmt.setString(2, "row 1");
    pstmt.addBatch();
    pstmt.setInt(1, 2);
    pstmt.setString(2, "row 2");
    pstmt.addBatch();
    pstmt.setInt(1, 3);
    pstmt.setString(2, "row 3");
    pstmt.addBatch();
    pstmt.setInt(1, 4);
    pstmt.setString(2, "row 4");
    pstmt.addBatch();
    pstmt.setInt(1, 5);
    pstmt.setString(2, "row 5");
    pstmt.addBatch();
    pstmt.executeBatch();
    rset = stmt.executeQuery("select * from mytest_table");
    while (rset.next())
    System.out.println(rset.getInt(1) + ", " + rset.getString(2));
    catch (Exception e)
    e.printStackTrace();
    finally
    if (stmt != null)
    try { stmt.execute("drop table mytest_table"); } catch (Exception e) {}
    try { stmt.close(); } catch (Exception e) {}
    if (pstmt != null)
    try { pstmt.close(); } catch (Exception e) {}
    if (conn != null)
    try { conn.close(); } catch (Exception e) {}
    When I run this class I get the following output
    1, row 1
    2, row 3
    3, row 5
    4, null
    5,
    But It should have been
    1, row 1
    2, row 2
    3, row 3
    4, row 4
    5, row 5
    The same class runs fine if I use Thin driver.
    Can anyone please help me solve this issue.
    Note: This happens only in case we use setString with Varchar2 in the DB. This works fine if I have two number columns
    Thanks,
    Raja.S

    Please post this question to the Java forum. It is located under "Technologies".

  • How to use the Oracle 10g JDBC OCI driver in JBoss ?

    Greetings,
    I deployed ojdbc14.jar in JBoss and I created an Oracle datasource. I have the following questions:
    1. In the datasource descriptor file I have:
    <connection-url>jdbc:oracle:oci:@(description=(address=(host=localhost)(protocol=tcp)(port=1521))(connect_data=(SERVICE_NAME=xe)))</connection-url>
    <driver-class>oracle.jdbc.driver.OracleDriver</driver-class>
    Is it enough in order to use the Oracle 10g JDBC OCI driver ?
    2. After having looked-up the datasource and created a connection, the classe of these objects are org.jboss.resource.adapter.jdbc.WrapperDataSource and, respectivelly, org.jboss.resource.adapter.jdbc.WrappedConnection. How can I have access to oracle.jdbc.oci and oracle.jdbc.pool packages ?
    Many thanks in advance,
    Nicolas

    Hello
    We were banging our heads on a similar thing, maybe this will help
    We needed to convert the wrapped connection to an OracleConnection so that we could do a proxy switch, but maybe you could apply it to your situation anyway
    1-you have to convert the Connection object to an OracleConnection in order to use the method that does the proxy switch
    The method to do this is getInnermostDelegate()
    Once you call this method, you get a new Connection object that can be cast to an OracleConnection object
    See below for the snippet of code
    // now switch the user and reselect
    if (conn instanceof DelegatingConnection) {
    properties.put("PROXY_USER_NAME","peter/peter");
    oraConn =((DelegatingConnection)conn).getInnermostDelegate();
    if (oraConn == null)
    out.println("oraConn is null\n");
    ((OracleConnection)oraConn).openProxySession(OracleConnection.PROXYTYPE_USER_NAME,properties);
    2-you have to put a setting in the xml file in conf/Catalina/localhost that allows you to call the getInnermostDelegate() method
    By default, Tomcat does not allow you to call this method, it will always return null
    You have to change the xml to allow it to return an object
    It seems that WebSphere and Tomcat both frown on vendor-specific methods that do not comply with the JDBC standards, but do allow it
    Here is the setting:
    <parameter>
    <!-- NOTE: This is necessary to enable access to the Oracle connection object -->
    <name>accessToUnderlyingConnectionAllowed</name>
    <value>true</value>
    </parameter>
    Note, this setting was also put in the conf/server.xml file
    Thanks
    Peter

  • How to migrate Oracle 9i(32 bit) to oracle 10g(64 bit) DB with ASM

    How to migrate Oracle 9i(32 bit) to oracle 10g(64 bit) DB with ASM on SAME platform RHEL4.0
    Scenario My case:
    1) DB size 400G.
    2) Minimum downtime.
    3) oracle 9i(9.2.0.4) source DB.
    4) oracle 10g(10.2.0.3) target DB with ASM.
    5) Source DB (HOST A) and target DB (HOST B) Machine.
    Thanks
    Ashutosh

    I think Werner is suggesting you ask your question in the appropriate forum.
    Go up 2 levels (to Community Discussion Forum) and look for the Database category. It's not that difficult to find, and you will be discussing the question with people who actually care about that kind of question.
    The people who read and interact in this forum do so to discuss Documentation questions. Specifically questions about how to improve the documentaiton.

  • How to integrate Oracle Enterprise Pack for Eclipse with Weblogic Portal

    Hi
    I am following this documentation http://download.oracle.com/docs/cd/E15919_01/wlp.1032/e14252/setup_dev_env.htm#i1013214
    to setup my development environment for developing portal applications, but I cannot set it up, my eclipse does not have PORTAL perspective.
    I have downloaded the Oracle Enterprise Pack for Eclipse 11gR1 (11.1.1.5) and the Oracle WebLogic Portal 10.3 as mentioned in the documentation.
    The Oracle Weblogic Portal 10.3 includes a workshop version of eclipse, but that is not based on a recent Eclipse, that is why I would like to use the Oracle Enterprise Pack for Eclipse 11gR1 (11.1.1.5).
    It is weird int he Oracle Portal 10.3 installation that I cannot install the Weblogic Portal without the Workshop.
    Could you help me in this? How can I integrate the Oracle Enterprise Pack for Eclipse with Weblogic Portal?
    Thank you.

    For WebLogic Portal tooling you have a couple of options. For WebLogic Portal 10.3 and older, Workshop for WebLogic will be your tooling environment.
    Starting in WebLogic Portal 10.3.2, which released this year, the development tools have migrated to Oracle Enterprise Pack for Eclipse. The WebLogic Portal 10.3.2 installer will install both the runtime and the IDE configured with additional WebLogic Portal Eclipse features (Portal Project Configuration, Perspecitives, Palettes, Deployment, etc).
    If you are interest in the latest version, you can download from the WebLogic Portal OTN page - http://www.oracle.com/technology/products/weblogic/portal/index.html

  • Deadlock issue in Oracle 10g Partitioned Tables

    Hi ALL,
    I am facing an issue of Deadlock while inserting data into a partitioned table.
    I get an error "ORA-00600: Deadlock detected". when i see the trace files, following lines are appearing in them:
    "Single resource deadlock: blocking enqueue which blocks itself".
    Here is the detail of my test case:
    1. I have a list-partitioned table, with partitioning defined on some business codes.
    2. I have a query that merges data into partitioned table (actually compares unique keys between temporary table and partitioned table and then issue an insert if keys not matched, no update part).
    3. The temporary table contains transactional data against many business codes.
    3. when calling the above query from multiple (PL/SQL) sessions, i observe that when we merge data in same partition (from different sessions) than deadlock issue occurs, otherwise it is OK.
    4. Note that all sessions are executed at same time. Also note that Commit is called after each session is completed. Each session contains 2-3 more queries after the mentioned merge statement.
    Is there an issue with oracle merge/insert on same partition (from different sessions)? What is the locking mechanism for this particular case (partitioned tables)?
    My oracle version is Oracle 10g (10.2.0.4). Kindly advice.
    Thanks,
    QQ.

    Could you print the deadlock tree so we can see the type and mode of the locking. (Please use the 'code' tags - see FAQ at top right of screen - to showthe output in fixed font). can you list any SQL operated by this session that gets reported in the trace file.
    Does the table reference itself in a foreign key.
    Is this table involved in any referential integrity constraints.
    Do you have a global primary key index, or a local primary key index ?
    Are there any triggers on the table - if so do they contain autonomous transactions.
    At present the only though that springs to mind is that the merge command has to lock the target table to do the insert/update, but it also has to lock any child table. The mode of the child lock depends on whether it has a suitable index or not, and whether the child table IS also the parent table. If you have two merges to the same partition one partition may get its locks, and the other partition may be in a state where it can't get one of the locks because it's wait for the other. (This shouldn't be a self-deadlock, though, but the scenario might be heading in the right direction for a self-deadlock).
    Regards
    Jonathan Lewis
    http://jonathanlewis.wordpress.com
    http://www.jlcomp.demon.co.uk
    "The greatest enemy of knowledge is not ignorance, it is the illusion of knowledge." (Stephen Hawking)

  • OEM configuration issue in Oracle 10g

    Hi,
    I am trying to manually configure OEM on oracle 10g solaris platform (5.10). Earlier I have configured the OEM manually on the same server and then due to customer request de-configure it. But now again, I need to re-configure OEM on same server and facing issue.
    Steps which I am following are :-
    -> Listener is started
    -> Database is up and running.
    -> Creating repository through command emca -repos create
    -> Configuring the dbconsole through command emca -config dbcontrol db
    At this step after providing the information of database name, listener port, Password for SYS user,Password for DBSNMP user,Password for SYSMAN user,Email address for notifications (optional): [email protected],Outgoing Mail (SMTP) server for notifications (optional): wbmlir1.mail.xerox.com, it is giving the below error that db console cannot be started.
    Do you wish to continue? [yes(Y)/no(N)]: Y
    Aug 22, 2011 10:18:38 AM oracle.sysman.emcp.EMConfig perform
    INFO: This operation is being logged at /rdwq/apps/oracle/product/10.2.0.4.2011Q1/cfgtoollogs/emca/rdwq/emca_2011-08-22_10-17-04-AM.log.
    Aug 22, 2011 10:18:43 AM oracle.sysman.emcp.ParamsManager getLocalListener
    WARNING: Error retrieving listener for usa7061ux300
    Aug 22, 2011 10:18:44 AM oracle.sysman.emcp.util.DBControlUtil secureDBConsoleINFO: Securing Database Control (this may take a while) ...
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.DBControlUtil secureDBConsoleINFO: Database Control secured successfully.
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.DBControlUtil startOMSINFO: Starting Database Control (this may take a while) ...
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin/emctl start dbconsole
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database ControlRefer to the log file at /rdwq/apps/oracle/product/10.2.0.4.2011Q1/cfgtoollogs/emca/rdwq/emca_2011-08-22_10-17-04-AM.log for more details.
    Could not complete the configuration. Refer to the log file at /rdwq/apps/oracle/product/10.2.0.4.2011Q1/cfgtoollogs/emca/rdwq/emca_2011-08-22_10-17-04-AM.log for more details.
    Below is the content of logfile :-
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.DBControlUtil secureDBConsole
    INFO: Database Control secured successfully.
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.EMDBPostConfig performConfiguration
    CONFIG: Securing Database Control completed successfully .
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.ParamsManager getParam
    CONFIG: No value was set for the parameter ORACLE_HOSTNAME.
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.DBControlUtil startOMS
    INFO: Starting Database Control (this may take a while) ...
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'DISPLAY' is '', discarding the same
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.PlatformInterface addEnvVarToList
    CONFIG: Value for env var 'ORACLE_HOSTNAME' is '', discarding the same
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.PlatformInterface getEnvProps
    CONFIG: Returning env array from cache
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.PlatformInterface getSortedEnvArray
    CONFIG: New Env List: [BKUPDIR=/data, CLASSPATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/emca.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/srvm.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/srvmasm.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/emConfigInstall.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/ldapjclnt10.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/ldap.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/share.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/srvmhas.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jlib/netcfg.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib/xmlparserv2.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/assistants/jlib/assistantsCommon.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/sysman/jlib/emCORE.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/oui/jlib/OraInstaller.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/oui/jlib/OraPrereq.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/inventory/prereqs/oui/OraPrereqChecks.jar:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/oui/jlib/OraPrereqChecks.jar:, DYLD_LIBRARY_PATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib32:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/perl/lib, EDITOR=vi, HOME=/rdwq/ap01/rdwsdba, HZ=, LC_COLLATE=en_US.ISO8859-1, LC_CTYPE=en_US.ISO8859-1, LC_MESSAGES=C, LC_MONETARY=en_US.ISO8859-1, LC_NUMERIC=en_US.ISO8859-1, LC_TIME=en_US.ISO8859-1, LD_LIBRARY_PATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jdk/jre/lib/sparc/client:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jdk/jre/lib/sparc:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/jdk/jre/../lib/sparc:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib32:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/perl/lib:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib:/usr/SUNWspro/lib:/usr/openwin/lib:/usr/dt/lib, LIBPATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib32:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/perl/lib, LOGNAME=rdwsdba, MAIL=/usr/mail/rdwsdba, MANPATH=/local/man:/usr/share/man, NEED_EXIT_CODE=1, NLSPATH=/usr/dt/lib/nls/msg/%L/%N.cat, OLDPWD=/rdwq/ap01/rdwsdba, ORACLE_BASE=/rdwq/apps/oracle, ORACLE_DOC=/rdwq/apps/oracle/doc, ORACLE_HOME=/rdwq/apps/oracle/product/10.2.0.4.2011Q1, ORACLE_PATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin, ORACLE_SID=rdwq, ORACLE_TERM=xsun5, ORAENV_ASK=NO, ORATAB=, ORA_NLS=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/ocommon/nls/admin/data, PATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin:/opt/local/scripts:/opt/local/bin:/opt/local/xns:/opt/X11:/bin:/usr/sbin:/usr/bin:/usr/local/bin:/usr/etc:/usr/ccs/bin:/usr/ucb:/usr/openwin:/usr/openwin/bin:/usr/bin/X11:/usr/openwin/bin/X11:/usr/openwin/lib:/usr/lib:/usr/sbin:/usr/local/bin:/app/oracle/local/dba/utilities:/opt/bin:/opt/EDSsrm/bin:/usr/bin, PWD=//rdwq/apps/oracle/product/10.2.0.4.2011Q1/network/admin, SHELL=/bin/bash, SHLIB_PATH=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib32:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/lib:/rdwq/apps/oracle/product/10.2.0.4.2011Q1/perl/lib, SHLVL=1, TERM=vt100, TNS_ADMIN=, TZ=US/Pacific, XFILESEARCHPATH=/usr/dt/app-defaults/%L/Dt, _=/rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin/emca]
    Aug 22, 2011 10:19:01 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Starting execution: /rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin/emctl start dbconsole
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Exit value of 1
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    CONFIG: Oracle Enterprise Manager 10g Database Control Release 10.2.0.4.0
    Copyright (c) 1996, 2007 Oracle Corporation. All rights reserved.
    https://usa7061ux300:1158/em/console/aboutApplication
    Starting Oracle Enterprise Manager 10g Database Control ............................................................................................. failed.
    Logs are generated in directory /rdwq/apps/oracle/product/10.2.0.4.2011Q1/usa7061ux300_rdwq/sysman/log
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.util.PlatformInterface executeCommand
    WARNING: Error executing /rdwq/apps/oracle/product/10.2.0.4.2011Q1/bin/emctl start dbconsole
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.EMConfig perform
    SEVERE: Error starting Database Control
    Refer to the log file at /rdwq/apps/oracle/product/10.2.0.4.2011Q1/cfgtoollogs/emca/rdwq/emca_2011-08-22_10-17-04-AM.log for more details.
    Aug 22, 2011 10:24:21 AM oracle.sysman.emcp.EMConfig perform
    CONFIG: Stack Trace:
    oracle.sysman.emcp.exception.EMConfigException: Error starting Database Control
    at oracle.sysman.emcp.EMDBPostConfig.performConfiguration(EMDBPostConfig.java:646)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:224)
    at oracle.sysman.emcp.EMDBPostConfig.invoke(EMDBPostConfig.java:193)
    at oracle.sysman.emcp.EMConfig.perform(EMConfig.java:184)
    at oracle.sysman.emcp.EMConfigAssistant.invokeEMCA(EMConfigAssistant.java:486)
    at oracle.sysman.emcp.EMConfigAssistant.performConfiguration(EMConfigAssistant.java:1142)
    at oracle.sysman.emcp.EMConfigAssistant.statusMain(EMConfigAssistant.java:470)
    at oracle.sysman.emcp.EMConfigAssistant.main(EMConfigAssistant.java:419)
    Please guide me to resolve this issue.
    Thanks

    Hi,
    Content of emagent.trc :-
    2011-08-22 11:37:07 Thread-1 ERROR http: snmehl_allocateListenerPort: failed to bind socket: Address already in use (errno=125)
    2011-08-22 11:37:07 Thread-1 ERROR http: nmehl_startHttpListener: failed to listen to HTTP port for http://usa7061ux300:3938/emd/main
    2011-08-22 11:37:07 Thread-1 ERROR main: nmehl_startHttpListener failed starting http listener
    Content of emagent.trc :-
    2011-08-22 11:37:07 Thread-1 ERROR http: snmehl_allocateListenerPort: failed to bind socket: Address already in use (errno=125)
    2011-08-22 11:37:07 Thread-1 ERROR http: nmehl_startHttpListener: failed to listen to HTTP port for http://usa7061ux300:3938/emd/main
    2011-08-22 11:37:07 Thread-1 ERROR main: nmehl_startHttpListener failed starting http listener
    rdwsdba$ tail -100 emdctl.trc
    2011-08-23 07:01:19 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:01:19 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:01:19 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:01:19 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:02:49 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:02:49 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:02:49 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:02:49 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:04:19 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:04:19 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:04:19 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:04:19 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:05:49 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:05:49 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:05:49 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:05:49 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:07:19 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:07:19 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:07:19 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:07:19 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:08:50 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:08:50 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:08:50 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:08:50 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:10:20 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:10:20 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:10:20 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:10:20 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:11:50 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:11:50 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:11:50 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:11:50 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:13:20 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:13:20 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:13:20 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:13:20 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:14:50 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:14:50 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:14:50 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:14:50 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:16:20 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:16:20 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:16:20 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:16:20 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:17:51 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:17:51 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:17:51 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:17:51 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:19:21 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:19:21 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:19:21 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:19:21 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:20:51 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:20:51 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:20:51 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:20:51 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:22:21 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:22:21 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:22:21 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:22:21 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:23:51 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:23:51 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:23:51 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:23:51 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:25:21 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:25:21 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:25:21 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:25:21 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:26:52 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:26:52 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:26:52 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:26:52 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:28:22 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:28:22 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:28:22 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:28:22 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:29:52 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:29:52 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:29:52 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:29:52 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:31:22 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:31:22 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:31:22 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:31:22 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:32:52 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:32:52 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:32:52 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:32:52 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:34:22 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:34:22 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:34:22 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:34:22 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:35:52 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:35:52 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:35:52 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:35:52 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    2011-08-23 07:37:23 Thread-1 WARN http: nmehl_readAgentKey: File access failure
    2011-08-23 07:37:23 Thread-1 ERROR ssl: Open wallet failed, ret = 28759
    2011-08-23 07:37:23 Thread-1 ERROR ssl: nmehlenv_openWallet failed
    2011-08-23 07:37:23 Thread-1 ERROR http: 256: Unable to initialize ssl connection with server, aborting connection attempt
    There is no secure.log file.
    Thanks

  • Data pump issue for oracle 10G in window2003

    Hi Experts,
    I try to run data pump in oracle 10G in window 2003 server.
    I got a error as
    D:\>cd D:\oracle\product\10.2.0\SALE\BIN
    D:\oracle\product\10.2.0\SALE\BIN>expdp system/xxxxl@sale full=Y directory=du
    mpdir dumpfile=expdp_sale_20090302.dmp logfile=exp_sale_20090302.log
    Export: Release 10.2.0.4.0 - Production on Tuesday, 03 March, 2009 8:05:50
    Copyright (c) 2003, 2007, Oracle. All rights reserved.
    Connected to: Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Produc
    tion
    With the Partitioning, OLAP, Data Mining and Real Application Testing options
    ORA-31626: job does not exist
    ORA-31650: timeout waiting for master process response
    However, I can run exp codes and works well.
    What is wrong for my data pump?
    Thanks
    JIM

    Hi Anand,
    I did not see any error log at that time. Actually, it did not work any more. I will test it again based on your emial after exp done.
    Based on new testing, I got below errors as
    ORA-39014: One or more workers have prematurely exited.
    ORA-39029: worker 1 with process name "DW01" prematurely terminated
    ORA-31671: Worker process DW01 had an unhandled exception.
    ORA-04030: out of process memory when trying to allocate 4108 bytes (PLS non-lib hp,pdzgM60_Make)
    ORA-06512: at "SYS.KUPC$QUEUE_INT", line 277
    ORA-06512: at "SYS.KUPW$WORKER", line 1366
    ORA-04030: out of process memory when trying to allocate 65036 bytes (callheap,KQL tmpbuf)
    ORA-06508: PL/SQL: could not find program unit being called: "SYS.KUPC$_WORKERERROR"
    ORA-06512: at "SYS.KUPW$WORKER", line 13360
    ORA-06512: at "SYS.KUPW$WORKER", line 15039
    ORA-06512: at "SYS.KUPW$WORKER", line 6372
    ORA-39125: Worker unexpected fatal error in KUPW$WORKER.DISPATCH_WORK_ITEMS while calling DBMS_METADATA.FETCH_XML_CLOB [PROCOBJ:"SALE"."SQLSCRIPT_2478179"]
    ORA-06512: at "SYS.KUPW$WORKER", line 7078
    ORA-04030: out of process memory when trying to allocate 4108 bytes (PLS non-lib hp,pdzgM60_Make)
    ORA-06500: PL/SQL: storage error
    ORA-04030: out of process memory when trying to allocate 16396 bytes (koh-kghu sessi,pmucpcon: tds)
    ORA-04030: out of process memory when trying to allocate 16396 bytes (koh-kghu sessi,pmucalm coll)
    Job "SYSTEM"."SYS_EXPORT_FULL_01" stopped due to fatal error at 14:41:36
    ORA-39014: One or more workers have prematurely exited.
    the trace file as
    *** 2009-03-03 14:20:41.500
    *** ACTION NAME:() 2009-03-03 14:20:41.328
    *** MODULE NAME:(oradim.exe) 2009-03-03 14:20:41.328
    *** SERVICE NAME:() 2009-03-03 14:20:41.328
    *** SESSION ID:(159.1) 2009-03-03 14:20:41.328
    Successfully allocated 7 recovery slaves
    Using 157 overflow buffers per recovery slave
    Thread 1 checkpoint: logseq 12911, block 2, scn 7355467494724
    cache-low rba: logseq 12911, block 251154
    on-disk rba: logseq 12912, block 221351, scn 7355467496281
    start recovery at logseq 12911, block 251154, scn 0
    ----- Redo read statistics for thread 1 -----
    Read rate (ASYNC): 185319Kb in 1.73s => 104.61 Mb/sec
    Total physical reads: 189333Kb
    Longest record: 5Kb, moves: 0/448987 (0%)
    Change moves: 1378/5737 (24%), moved: 0Mb
    Longest LWN: 1032Kb, moves: 45/269 (16%), moved: 41Mb
    Last redo scn: 0x06b0.9406fb58 (7355467496280)
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 3
    Average hash chain = 35384/25746 = 1.4
    Max compares per lookup = 3
    Avg compares per lookup = 847056/876618 = 1.0
    *** 2009-03-03 14:20:46.062
    KCRA: start recovery claims for 35384 data blocks
    *** 2009-03-03 14:21:02.171
    KCRA: blocks processed = 35384/35384, claimed = 35384, eliminated = 0
    *** 2009-03-03 14:21:02.531
    Recovery of Online Redo Log: Thread 1 Group 2 Seq 12911 Reading mem 0
    *** 2009-03-03 14:21:04.718
    Recovery of Online Redo Log: Thread 1 Group 1 Seq 12912 Reading mem 0
    *** 2009-03-03 14:21:16.296
    ----- Recovery Hash Table Statistics ---------
    Hash table buckets = 32768
    Longest hash chain = 3
    Average hash chain = 35384/25746 = 1.4
    Max compares per lookup = 3
    Avg compares per lookup = 849220/841000 = 1.0
    *** 2009-03-03 14:21:28.468
    tkcrrsarc: (WARN) Failed to find ARCH for message (message:0x1)
    tkcrrpa: (WARN) Failed initial attempt to send ARCH message (message:0x1)
    *** 2009-03-03 14:26:25.781
    kwqmnich: current time:: 14: 26: 25
    kwqmnich: instance no 0 check_only flag 1
    kwqmnich: initialized job cache structure
    ktsmgtur(): TUR was not tuned for 360 secs
    Windows Server 2003 Version V5.2 Service Pack 2
    CPU : 8 - type 586, 4 Physical Cores
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:7447M/8185M, Ph+PgF:6833M/9984M, VA:385M/3071M
    Instance name: vmsdbsea
    Redo thread mounted by this instance: 0 <none>
    Oracle process number: 0
    Windows thread id: 2460, image: ORACLE.EXE (SHAD)
    Dynamic strand is set to TRUE
    Running with 2 shared and 18 private strand(s). Zero-copy redo is FALSE
    *** 2009-03-03 08:06:51.921
    *** ACTION NAME:() 2009-03-03 08:06:51.905
    *** MODULE NAME:(expdp.exe) 2009-03-03 08:06:51.905
    *** SERVICE NAME:(xxxxxxxxxx) 2009-03-03 08:06:51.905
    *** SESSION ID:(118.53238) 2009-03-03 08:06:51.905
    SHDW: Failure to establish initial communication with MCP
    SHDW: Deleting Data Pump job infrastructure
    is it a system memory issue for data pump? my exp works well
    How to fix this issue?
    JIM
    Edited by: user589812 on Mar 3, 2009 5:07 PM
    Edited by: user589812 on Mar 3, 2009 5:22 PM

  • Oracle 10g DB create fails with jave.lang.StackOverflowError

    Hi all,
    wonder if you can help with my issue.
    I'm trying to install oracle 10g on Redhat ES4 on a virtual machine (VMplayer) on a HP Elite Book laptop. I've set swapspace to 4GB and have 1.5 Gb of RAM allocated to the virtual machine.
    I've set the ulimts and maxproc an the soft/hard nproc/nofile to appropraie values for the create.

    I don't think it's a java problem at all.................
    When I run dbca with the silent install I get the message
    "waiting for m_bReaderStarted to be true" - which is never is.
    So it isn't making a connection I suspect.
    The loistenser also won't start.
    10g is installed on linux es4 running on VM Player.
    I think the proble ,ay be to do with when I start dbca (or the listener) it doesn't connect.
    In /etc/hosts I have
    127.0.0.1 localhost.localdomain localhost
    and in the tnsnames.ora and listener.ora files i have the 'HOST = localhost.localdomain' (with post = 1521)
    Is /etc/hosts and the ora files set correctly ?

  • Install Oracle 10g on Linux RH with existing Oracle 9i

    I have Oracle enterprise 9i running on a linux server.
    Would i have any problem if I install Oracle10g for another db on the same server.
    What are the issues I should consider in order to avoid damage of the existing 9i db
    Thanks,
    Odette

    There is absolutely no problem if you have multiple oracle versions. Just beware of:
    Inventory location. Backup the inventory, in case something goes completely wrong, this is a usefull mean to perform a clean deinstall. If other version corrupts the inventory you have a valid backup copy.
    Oracle 10g installer is different from the 9i installer, use oui provided at install media, do not use already installed oui.
    When starting services, oracle will try to use 1521 default listener port. It can listen to all instances, even if they are from previous releases, it is advised to use the 10g listener. I would reccomend you, however to use a different port, this way you can perform several tests without messing with current 9i configuration.
    ~ Madrid.

  • Oracle 10g on SuSE 9 with kernel 2.6.4

    Hi,
    i have installed Oracle 10g on SuSE 9 Professional with kernel 2.4.21-192 and it works fine.
    For testing purposes i have installed a 2.6.4 Kernel and get the following error on database startup:
    SQL> Connected to an idle instance
    SQL> ORA-27125: unable to create shared memory segment
    Linux Error: 1: Operation not permitted
    SQL> Disconnected
    Do you have any hints or is the kernel 2.6 not supported.
    Thanks Klaus

    /* using strace I have narrowed this down to the shmget call for allocating SGA memory. Specifically 2.6 kernel generates a WAIT in this call and Oracle specify IPC_NOWAIT flag, hence the failure condition.*/
    #include <sys/types.h>
    #include <sys/shm.h>
    #include <sys/types.h>
    #include <sys/mman.h>
    #include <errno.h>
    extern int errno;
    #define SHM_HUGETLB 04000
    #define SGA_SIZE 192937984
    #define dprintf(x) printf(x)
    #define ADDR 3285588844UL
    main()
    int shmid;
    int i, j, k;
    volatile char *shmaddr;
    if ((shmid = shmget(ADDR, SGA_SIZE, IPC_CREAT|IPC_NOWAIT|IPC_EXCL|0660) )
    < 0) {
    perror("IPC_NOWAIT Failure:\nTry without NOWAIT condition");
    if ((shmid = shmget(ADDR, SGA_SIZE, IPC_CREAT|IPC_EXCL|0660) )
    < 0) {
    perror("Failure:");
    exit(1);
    printf("shmid: 0x%x\n", shmid);
    shmaddr = shmat(shmid, (void *)ADDR, SHM_RND) ;
    if (errno != 0) {
    perror("Shared Memory Attach Failure:");
    exit(2);
    printf("shmaddr: %p\n", shmaddr);
    dprintf("Starting the writes:\n");
    for (i=0;i<SGA_SIZE;i++) {
    shmaddr[i] = (char) (i);
    if (!(i%(1024*1024))) dprintf(".");
    dprintf("\n");
    dprintf("Starting the Check...");
    for (i=0; i<SGA_SIZE;i++)
    if (shmaddr[i] != (char)i)
    printf("\nIndex %d mismatched.");
    dprintf("Done.\n");
    if (shmdt((const void *)shmaddr) != 0) {
    perror("Detached Failure:");
    exit (3);

  • Apostrophe (') issue in Oracle 10g

    Hi,
    I am using oracle 10g and I inserted a record with apostrophe symbol. After executing the script i checked the data and apostrophe symbol is converted into a special character like below.
    Original - Applying of Smart 5 S’ Principles
    After insertion - Applying of Smart 5 S¿ Principles
    After that i updated the record with apostrophe symbol then also it is not updating. Please help me. Thanks.
    Cheers,
    Thana

    Hi,
    Have you tried to "escape" the quote by doubling it?
    update  yourtable
    set col1='Applying of Smart 5 S'' Principles';Are you runing your update from a machine which could have a different character set from that one you're running the select?
    (ie unix systems have different quotes for example " ` ") ...

  • Configuration assistant error with Oracle 10g 10.2.02 with Solaris 10 6/06

    Hi all,
    As anyone seen this a fix for this error?
    I have installed Solaris 10 6/06 x86 on VMWare 5.2 which works fine.
    When I attempt to install Oracle 10g 10.2.02 for Solaris x86 (released in Sept 06), the install goes fine until I get to the configuration assistant stage.
    The first Net based configuration assistant fails with a Java exception which seems to be related to a Sig 11 in the libc library.
    This looks like an error fixed by a patch mentioned in the release notes but the patch does not seem to be available for this version of Solaris.
    Any comments would be greatly appreciated...
    Regards
    Anthony

    Hi all,
    Just to update this.
    I have deselected the create database option part of the install and Oracle installs OK!
    The problem is in the create database phase which I have manually done when I use the dbca program.
    When I get to the create database operation of the the dbca wizard, I get a the following error "ORA-00600, internal error code, arguments [kelntf-ldminit, [146],[1],[],[],[],[],[]"
    Any offers?

  • TO_DATE function issue in Oracle 10g R2

    Hi,
    This SQL statement works in Oracle 10g R2 env & Oracle 9i R2.
    SQL>select TO_CHAR(TO_DATE(SYSDATE,'DD/MM/RRRR','NLS_DATE_LANGUAGE = ''AMERICAN'''),'RRRR/MM/DD','NLS_DATE_LANGUAGE = ''AMERICAN''') SYSTEM_DATE
    from dual;
    But after changing the session to Arabic it does not work in Oracle 10g R2 env but works in Oracle 9i R2 env.
    SQL> alter session set nls_language='ARABIC';
    SQL>select TO_CHAR(TO_DATE(SYSDATE,'DD/MM/RRRR','NLS_DATE_LANGUAGE = ''AMERICAN'''),'RRRR/MM/DD','NLS_DATE_LANGUAGE = ''AMERICAN''') SYSTEM_DATE
    from dual;
    Some one please confirm this will not work in Oracle 10g R2 env after altering the session.
    Rgds,

    The error message is:
    ORA-01858: a non-numeric character was found where a numeric was expected.\
    Rgds.

  • Unicode font issue in oracle 10g Reports

    Hi,
    I have install oracle 10g forms and Reports in windows XP system (c:\DevSuiteHome_1).
    I have created report for display GUJARATI Language data in PDF. Report is coming but it is displaying junk character instead of GUJARATI data.
    Plz help me.

    Hello,
    Do you use Font Subsetting or Font Embedding ?
    Regards

Maybe you are looking for

  • How can I backup NAS drive to Time Capsule using Time Machine?

    My itunes library is on a USB HD that's connected to my time capsule, essentially turning the drive into a NAS drive. Is there anyway I can include this drive in time machine backups? So basically, time machine would be backing up the hard drive conn

  • QuickTime for Windows takes long time to play LAN video

    I have mpeg4 and DV video saved on XServe+XRAID. When I connect such videos form a PC with XP/QuickTime Player, on the same LAN, it take a lot of time (one or more minutes), before start to play. Any other LAN operation give non problem. The same vid

  • Output audio different than video

    From FCP, timeline highlighted, I exported to Compressor. 30 minutes of video and corresponding audio. When it's finished the video is what was in the timeline in FCP, but the audio is from another clip altogether. I've tried the same steps with othe

  • Question Marks everywhere!

    I just loaded in the CD for my Live! Cam Chat (i think there i s a Vista in there somewhere). it says it works for window's XP as well, which is what I have. Most of the menu's in the creative cam window (where i can see myself) are all question mark

  • My MacB

    My MacBook Pro will not power on, there is no sound when I try.  When I plug it in the only thing that lights up is the green light on the plug in adapter.  Please help