Problem with Oracle Forums with Opera Browser

Hello Oracle, i am having trouble navigating and posting thread with Opera Browser version 8.54 The problem is the following:
When i enter an Url in the Opera Browser for example:
BPEL
The page apears ok except for the images that does not appear
and the main problem is that the links appear to point to this direction
http://forums.oracle.com/thread.jspa?threadID=384456&tstart=0
That points to a Oracle 404 error page.
The link should be pointing to
Bpel Process Analytics
It appears that the forums page generates the wrong page link, it apears that deletes the /forums part from the page link.
Thank you very much

I have the same problem. Here is the error from alert log
Thu Mar 23 10:40:10 2006
Errors in file /oracle/admin/CAASTGPD/udump/caastgpd_ora_10365.trc:
ORA-07445: exception encountered: core dump [lnxsni()+177] [SIGSEGV] [Address not mapped to object] [0x1] [] []
Thu Mar 23 10:44:23 2006
Errors in file /oracle/admin/CAASTGPD/udump/caastgpd_ora_11256.trc:
ORA-07445: exception encountered: core dump [lnxsni()+177] [SIGSEGV] [Address not mapped to object] [0x1] [] []
Thu Mar 23 10:45:08 2006
Here is from trace file
Exception signal: 11 (SIGSEGV), code: 1 (Address not mapped to object), addr: 0x1, PC: [0xa1cde3d, lnxsni()+177]
Registers:
%eax: 0x00000000 %ebx: 0x0ad4d4c4 %ecx: 0x00000000
%edx: 0x00000001 %edi: 0x6d9f37a0 %esi: 0x00000016
%esp: 0xbfff4a18 %ebp: 0xbfff4a84 %eip: 0x0a1cde3d
%efl: 0x00010202
lnxsni()+160 (0xa1cde2c) movzb (%edx),%ecx
lnxsni()+163 (0xa1cde2f) cmp $0x80,%ecx
lnxsni()+169 (0xa1cde35) jz 0xa1ce706
lnxsni()+175 (0xa1cde3b) jmp 0xa1cde40
lnxsni()+177 (0xa1cde3d) movzb (%edx),%ecxlnxsni()+180 (0xa1cde40) mov 0xffffffd0(%ebp),%edi
lnxsni()+183 (0xa1cde43) mov %ecx,%eax
lnxsni()+185 (0xa1cde45) sar $0x7,%eax
lnxsni()+188 (0xa1cde48) mov %eax,0xffffffcc(%ebp)
*** 2006-03-23 10:44:23.963
ksedmp: internal or fatal error
ORA-07445: exception encountered: core dump [lnxsni()+177] [SIGSEGV] [Address not mapped to object] [0x1] [] []
Current SQL statement for this session:
SELECT SYS_OP_ITR("XML_CONTENT",:"SYS_B_0",:"SYS_B_1") FROM "XML_DOCUMENT" "XML_DOCUMENT"
----- Call Stack Trace -----
calling call entry argument values in hex
location type point (? means dubious value)
ksedmp()+269 call ksedst()+0 1 ? 0 ? 0 ? 1 ? 6678302C ?

Similar Messages

  • Help with oracle 11g pivot operator

    i need some help with oracle 11g pivot operator. is it possible to use multiple columns in the FOR clause and then compare it against multiple set of values.
    here is the sql to create some sample data
    create table pivot_data ( country_code number , dept number, job varchar2(20), sal number );
    insert into pivot_data values (1,30 , 'SALESMAN', 5000);
    insert into pivot_data values (1,301, 'SALESMAN', 5500);
    insert into pivot_data values (1,30 , 'MANAGER', 10000);     
    insert into pivot_data values (1,301, 'MANAGER', 10500);
    insert into pivot_data values (1,30 , 'CLERK', 4000);
    insert into pivot_data values (1,302, 'CLERK',4500);
    insert into pivot_data values (2,30 , 'SALESMAN', 6000);
    insert into pivot_data values (2,301, 'SALESMAN', 6500);
    insert into pivot_data values (2,30 , 'MANAGER', 11000);     
    insert into pivot_data values (2,301, 'MANAGER', 11500);
    insert into pivot_data values (2,30 , 'CLERK', 3000);
    insert into pivot_data values (2,302, 'CLERK',3500);
    using case when I can write something like this and get the output i want
    select country_code
    ,avg(case when (( dept = 30 and job = 'SALESMAN' ) or ( dept = 301 and job = 'SALESMAN' ) ) then sal end ) as d30_sls
    ,avg(case when (( dept = 30 and job = 'MANAGER' ) or ( dept = 301 and job = 'MANAGER' ) ) then sal end ) as d30_mgr
    ,avg(case when (( dept = 30 and job = 'CLERK' ) or ( dept = 302 and job = 'CLERK' ) ) then sal end ) as d30_clrk
    from pivot_data group by country_code;
    output
    country_code          D30_SLS               D30_MGR               D30_CLRK
    1      5250      10250      4250
    2      6250      11250      3250
    what I tried with pivot is like this I get what I want if I have only one ( dept,job) for one alias name. I want to call (30 , 'SALESMAN') or (301 , 'SALESMAN') AS d30_sls. any help how can I do this
    SELECT *
    FROM pivot_data
    PIVOT (SUM(sal) AS sum
    FOR (dept,job) IN ( (30 , 'SALESMAN') AS d30_sls,
              (30 , 'MANAGER') AS d30_mgr,               
    (30 , 'CLERK') AS d30_clk
    this is a simple example .... my real life scenario is compliated with more fields and more combinations .... So something like using substr(dept,1,2) won't work in my real case .
    any suggestions get the result similar to what i get in the case when example is really appreciated.

    Hi,
    Sorry, I don't think there's any way to get exactly what you requested. The values you give in the PIVOT ... IN clause are exact values, not alternatives.
    You could do something like this to map all alternatives to a common value:
    WITH     got_dept_grp     AS
         SELECT     country_code, job, sal
         ,     CASE
                  WHEN  job IN ('SALESMAN', 'MANAGER') AND dept = 301 THEN 30
                  WHEN  job IN ('CLERK')               AND dept = 302 THEN 30
                                                                     ELSE dept
              END     AS dept_grp
         FROM     pivot_data
    SELECT     *
    FROM     got_dept_grp
    PIVOT     (     AVG (sal)
         FOR     (job, dept_grp)
         IN     ( ('SALESMAN', 30)
              , ('MANAGER' , 30)
              , ('CLERK'   , 30)
    ;In your sample data (and perhaps in your real data), it's about as easy to explicitly define the pivoted groups individually, like this:
    WITH     got_pivot_key     AS
         SELECT     country_code, sal
         ,     CASE
                  WHEN  job = 'SALESMAN' AND dept IN (30, 301) THEN 'd30_sls'
                  WHEN  job = 'MANAGER'  AND dept IN (30, 301) THEN 'd30_mgr'
                  WHEN  job = 'CLERK'    AND dept IN (30, 302) THEN 'd30_clrk'
              END     AS pivot_key
         FROM    pivot_data
    SELECT     *
    FROM     got_pivot_key
    PIVOT     (     AVG (sal)
         FOR     pivot_key
         IN     ( 'd30_sls'
              , 'd30_mgr'
              , 'd30_clrk'
    ;Thanks for posting the CREATE TABLE and INSERT statements; that really helps!

  • PROBLEM connect oracle 9i with JBOSS 3.2.3  application server

    i want to connect my web app to oracle9i by jboss3.2.3 .
    The database is on server machine in my domain and the application is on my local machine.
    Please help me is urgent
    Thanks

    To configure JBoss with Oracle dataabse.
    1. Copy Oracle's JDBC driver .zip file /jdbc/lib/classes12.zip to the server/default/lib directory.
    2. Copy /docs/examples/jca/oracle-ds.xml , to /server/default/deploy dir.
    3. In the oracle-ds.xml file set the <driver-class/> and <connection-url/> settings
    Class: oracle.jdbc.driver.OracleDriver
    URL: jdbc:oracle:thin:@<host>:<port>:<database>
    In the Connection URL setting, <host> is the HOST value specified in the /network/ADMIN/tnsnames.ora file, and <port> is the PORT value specified in the tnsnames.ora file, and <database> is the database name.
    4.
    Modify the standardjbosscmp-jdbc.xml configuration file, setting the <datasource> and <datasource-mapping> elements to use Oracle:
    <jbosscmp-jdbc>
    <defaults>
    <datasource>java:/OracleDS</datasource>
    <datasource-mapping>Oracle9i</datasource-mapping>
    </defaults>
    </jbosscmp-jdbc>
    5.
    Modify login-config.xml to use Oracle. Add the following <application-policy> element to login-config.xml:
    <application-policy name = "OracleDbRealm">
    <authentication>
    <login-module code =
    "org.jboss.resource.security.ConfiguredIdentityLoginModule"
    flag = "required">
    <module-option name = "principal">sa</module-option>
    <module-option name = "userName">sa</module-option>
    <module-option name = "password"></module-option>
    <module-option name ="managedConnectionFactoryName">
    jboss.jca:service=LocalTxCM,name=OracleDS
    </module-option>
    </login-module>
    </authentication>
    </application-policy>
    5.

  • Help with oracle 10g with servlet

    Someone please help me with this error when i compile this:
    import java.io.*;
    import java.net.*;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    import javax.servlet.*;
    import javax.servlet.http.*;
    * @author GeorgeZheng
    * @version
    public class MyServlet2 extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException, SQLException, ClassNotFoundException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    doPost(request,response);
    out.close();
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    try {
    processRequest(request, response);
    } catch (SQLException ex) {
    throw new ServletException(ex);
    catch (ClassNotFoundException ex) {
    throw new ServletException(ex);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    try {
    processRequest(request, response);
    String username = request.getAttribute("username").toString();
    String password = request.getAttribute("password").toString();
    if(validateUser(username, password))
    response.sendRedirect("SQL.html");
    else
    response.sendRedirect("input.jsp");
    } catch (SQLException ex) {
    throw new ServletException(ex);
    catch (ClassNotFoundException ex) {
    throw new ServletException(ex);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    public boolean validateUser(String user, String pass)
    throws IOException, ServletException{
    int checker = 0;
    boolean test = false;
    try
    Class.forName("oracle.jdbc.driver.OracleDriver");
    Connection conn = DriverManager.getConnection("jdbc:oracle:thin:@localhost:1521:XE","hr", "123456kk");
    System.out.println("database connected");
    Statement sqlStatement = conn.createStatement();
    ResultSet rs = sqlStatement.executeQuery("select * from log");
    while(rs.next())
    if(rs.getString(1) == user)
    checker++;
    if(rs.getString(2) == pass)
    checker++;
    conn.close();
    return test;
    catch (SQLException e)
    throw new ServletException("Servlet cannot display the records", e);}
    catch (ClassNotFoundException e)
    throw new ServletException("JDBC Driver not found.", e);
    it gave me this error:
    Deploying application in domain failed; Error loading deployment descriptors for practiced Line 12 Column 48 -- Duplicate unique value [MyServlet2] declared for identity constraint of element "web-app".
    ; requested operation cannot be completed
    C:\Documents and Settings\GeorgeZheng\practiced\nbproject\build-impl.xml:452: Deployment error:
    The module has not been deployed.
    See the server log for details.

    I would guess that your problems has to do with your web.xml file.
    MeTitus

  • Having problems in C7-00 for Opera browser.

     I brought a C7-00 i m quite happy with the handset but  face a problem in a Opera browser while typing particularlly with the letters "W, Z, H, Y" also when i press space and start with a new word the browser just shuts down, it goes off without any warning. Any solution for this i even uninstalled and installed it still facing thesame problem. 
    Is anybody facing the same problem
    Solved!
    Go to Solution.

    I am not refering to the phones software. You already have the current version of the phones software.
    I am refering to the Opera Mobile application. Opera Mobile is a separate programme installed on your phone. Opera is not coveres by the software update utility so it won;t tell you if Opera is up to date. You have to check to make sure you have the latest version of that. To check the version, start Opera, then goto Help followed by About Opera. The latest version is version 11.00.1396. If you have an older version then use the Ovi Store app on your phone and download the latest version.

  • Problem in Oracle ADF with JDeveloper. JBO25001

    Hello All,
    I have to develop an application using oracle ADF and JDeveloper. To famalirize my self with the technology, I downloaded the Oracle ADF tutorial "Tutorial for Forms/4GL developers" from Oracle site.
    I am following this tutorial line by line, but still getting an error. I have created
    1) Entities
    2) Associations
    3) Views
    4) ViewLinks
    5) Application Module
    all by wizard.
    After I added my view and view link into the application module and tried to test it it gave me the following error.
    (oracle.jbo.common.ampool.ApplicationPoolException) JBO-30003: The application pool (.10E97657A25) failed to checkout an application module due to the following exception:
    ----- LEVEL 1: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.JboException, msg=JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 2: DETAIL 0 -----
    (oracle.jbo.JboException) JBO-29000: Unexpected exception caught: oracle.jbo.NameClashException, msg=JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    ----- LEVEL 3: DETAIL 0 -----
    (oracle.jbo.NameClashException) JBO-25001: Name ServiceRequestsTable of object type Attribute already exists
    I changed the names of each object but still the problem persisted.
    If any body can help me on this I will really appreciate it. Thanx a ton in advance.
    I have downloaded and using the latest JDeveloper version 10.1.3.1.0.3984
    Please help me on this.
    Regards,
    Saket Maheshwary

    Saket,
    Did you ever get this situation resolved?
    I'm working thru the tutorial myself and get the same error except the object is Product.
    Do you have any clues?
    Thanks,
    Lonnie Spears

  • Anyone have problems loading the forums with Chrome ?

    Since 2 weeks I am having problems in chrome ( don't load sections etc ), if I access with FF all works ok, but with chrome and safari is imposible to navigate to the diferent forums etc...

    Strange... Really... by example whe I come to forums.adobe.com I can select
    AIR Forum in the select box, but when I click the "OK" button nothing
    happends....

  • Problem with Oracle RAC with DRCP and persistent connections

    Hello,
    I am having a problem that has me stumped. I cannot get SCAN, and DRCP to work together nicely.
    Right now, I can connect through my scan hostname fine without connection pooling, once I enable it I start having connection time outs. I found if I specified outbound_connection_timeout in sqlnet.ora that it times the connection out to the time I set in there. If I don't set this option I get a "ORA-12170: TNS:Connect timeout occurred".
    The odd thing is I can leave connection pooling on and connect to one of my rac instances individually and it doesn't experience this problem. The only time it pops up is if I combine multiple rac instances (Through the use of SCAN or tnsnames.ora) and I enable connection pooling.
    I don't know which direction to go to even diagnose this, so any and all help is appreciated.
    Thank you.
    Edited by: Rarp on Oct 1, 2011 10:47 PM

    Hi,
    You need to detail the problem. Enable TRACE SQL*NET on the server and client using note below.
    How to Enable Oracle SQLNet Client , Server , Listener , Kerberos and External procedure Tracing from Net Manager [ID 395525.1]
    Also you can try check this note:
    11g: ORA-12170 With Combination RAC, DRCP and a Firewall [ID 953277.1]
    Hope this helps,
    Levi Pereira

  • Problem accessing oracle databse with JSP

    hI
    i'M TRYING TO ACCESS A ORACLE 8I DATABASE VIA A JSP. THE DATABASE IS LOCATED REMOTELY ON THE NETWORK AND I' USING JDEVELOPER 9i VERSION 9.0.3.1
    wHEN I RUN MY JSP, I WANT IT TO DISPLAY THE RESULT OF A QUERY ON MY JSP PAGE but instead i get this error on my error page : java.lang.NullPointerException
    what do u think is wrong with my code
    here it is :
    <%@ page language="java" %>
    <%@ page import = "java.sql.*" %>
    <%@ page import = "java.io.*" %>
    <%@ page errorPage="errorpage.jsp" %>
    <%@ page contentType="text/html;charset=windows-1252"%>
    <%
    String uname= request.getParameter("username");
    String pword= request.getParameter("password") ;
    String driverName = "oracle.jdbc.driver.OracleDriver" ;
    String dbUrl = "jdbc:oracle:thin:136.150.11.3:1521:orcl" ;
    /*String user = "hr8" ;
    String pass = "password" ; */
    Connection con= null ;
    Statement stmt = null;
         ResultSet rs = null;
    try
    { //loading driver
    Class.forName(driverName);
    catch (ClassNotFoundException e) {
    out.println("Unable to load driver class");
    try // connecting to the database
    con = DriverManager.getConnection(dbUrl,uname,pword);
    catch(SQLException ex){
    out.println("Error while connecting to the Database :" +
    ""+ ex.toString() );
    // create query
    stmt = con.createStatement();
    rs = stmt.executeQuery("select COUNTRY_NAME ,REGION_ID " +
    "from COUNTRIES where REGION_ID in (1,3,5,7,9);");
    while (rs.next())
    out.println(rs.getString(1));
    %>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
    <title>
    LOGIN UNITRANSFER
    </title>
    </head>
    <body>
    <h2>
    I got it
    <%
    out.println(uname);
    %>
    </h2>
    <p>
    </body>
    </html>

    The dbUrl should be of the format:
    "jdbc:oracle:thin@" + serverName + ":" + serverPort
    + ":" + dataBaseSID;
    String dbUrl = "jdbc:oracle:thin:@136.150.11.3:1521:orcl";

  • Problems using Oracle ODBC with Access

    Windows xp 64
    Oracle thick client 10.2.0.1
    When I test my ODBC connection in the Windows ODBC Admin Utility, it tests out fine. However whenever i try using a connection or creating within Access, I get error: "[Microsoft][ODBC Driver for Oracle][Oracle]ORA-12154: TNS:could not resolve the connect identifier specified (#12154) [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed IM006 0 [Microsoft][ODBC Driver Manager] Driver's SQLSetConnectAttr failed (#0)"
    Any suggestions? Thanks

    There's a known issue where 12154 occurs when an application has parenthesis in it's path, and MSAcces (being 32 bit) would get installed by default to c:\program files(x86).
    Patching the client to 10204 should resolve this issue for you.
    Greg

  • How to do pagination with oracle along with java

    hi
    i want to know how to use pagination codes along with java.

    Are you sure that you're on the right forum? This is the forum for Berkeley DB, Java Edition, and we don't support SQL.
    Linda

  • OSB Service with Oracle AQ with payload type SYS.AQ$_JMS_TEXT_MESSAGE

    I am trying to write a web-service to Enqueue/Dequeue messages from an AQ with payload type SYS.AQ$_JMS_TEXT_MESSAGE defined in Oracle DB.
    In my understanding is that I need to create a JMSModule within weblogic with a ForeignServer defined within it to enqueue/dequeue message to/from the AQ.
    I have created Datasource, JMSServer, JMSModule, ForeignServer (created ConnectionFactory with localJNDIName="MyQueueCF" and RemoteJNDIName as "QueueConnectionFactory" and Destination with localJNDIName="MyQueueDest" and RemoteJNDIName="Queues/<queue_name_in_DB>")
    My business service has an endpoint "http://localhost:7001/MyQueueCF/MyQueueDest"
    When I am testing my service to populate message on to the Queue. I get the following error:
    The error was oracle.jms.AQjmsException: Error creating the db_connection
    My questions are:
    * Am I following the correct procedure to talk to AQ with JMS text message type payload?
    * If yes, how can I get around the issue I am stuck with?
    Please help!
    Thanks.
    Edited by: user4696353 on 27-Sep-2011 11:43
    Edited by: user4696353 on 27-Sep-2011 11:49
    Edited by: user4696353 on 27-Sep-2011 12:25

    Example:
    conn / as sysdba
    begin
    dbms_aqadm.create_queue_table
    ( queue_table=> 'SCOTT.AQJMS'
    , queue_payload_type=> 'SYS.AQ$_JMS_TEXT_MESSAGE'
    , compatible=> '9.1'
    end;
    This worked fine for me after a standard DB-installation.

  • Restore Database with Oracle 9i with a New Host using RMAN

    Gurus,
    I am trying to restore a database from some RMAN created files on a new host with a new directory structure for some testing. I do not have access to the source database.
    The database is Oracle 9i.
    The files that have been created are the following:
    'C-2995630462-20110214-00' is the control file and SP file backup.
    'B_ABM4KAJ5_1_1' is the database backup.
    B_ACM4KARS_1_1 and B_AAM4KAIV_1_1 are archived redo logs
    Here is the RMAN listing from when the files were created:
    BS Key Size Device Type Elapsed Time Completion Time
    329 56M DISK 00:00:02 14/FEB/11
    BP Key: 329 Status: AVAILABLE Tag: TAG20110214T050015
    Piece Name: D:\BACKUPS\CRYSTAL\B_AAM4KAIV_1_1
    List of Archived Logs in backup set 329
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 184 4602414767 13/FEB/11 4602533494 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    330 Full 13G DISK 00:04:33 14/FEB/11
    BP Key: 330 Status: AVAILABLE Tag: TAG20110214T050021
    Piece Name: D:\BACKUPS\CRYSTAL\B_ABM4KAJ5_1_1
    List of Datafiles in backup set 330
    File LV Type Ckp SCN Ckp Time Name
    1 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\SYSTEM01.DBF
    2 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\UNDOTBS01.DBF
    3 Full 4602533509 14/FEB/11 D:\ORACLE\ORADATA\CRYSTAL\USERS01.DBF
    BS Key Size Device Type Elapsed Time Completion Time
    331 37K DISK 00:00:01 14/FEB/11
    BP Key: 331 Status: AVAILABLE Tag: TAG20110214T050500
    Piece Name: D:\BACKUPS\CRYSTAL\B_ACM4KARS_1_1
    List of Archived Logs in backup set 331
    Thrd Seq Low SCN Low Time Next SCN Next Time
    1 185 4602533494 14/FEB/11 4602533686 14/FEB/11
    BS Key Type LV Size Device Type Elapsed Time Completion Time
    332 Full 3M DISK 00:00:01 14/FEB/11
    BP Key: 332 Status: AVAILABLE Tag:
    Piece Name: D:\BACKUPS\CRYSTAL\C-2995630462-20110214-00
    SPFILE Included: Modification time: 23/NOV/10
    I am new to using RMAN and I'm hoping someone could point me in a direction of some documentation to assist with the scenario described above. I've looked at several Oracle documents but have been unable to find a way to separate out the spfile from the control file.
    Any help you can provide would be greatly appreciated.
    Thanks.

    Thanks Meeran.
    I have attempted to follow the directions from the RMAN document that you posted and have run into the following error:
    C:\>rman target / nocatalog
    Recovery Manager: Release 9.2.0.6.0 - Production
    Copyright (c) 1995, 2002, Oracle Corporation. All rights reserved.
    connected to target database: DUMMY (not mounted)
    using target database controlfile instead of recovery catalog
    RMAN> startup force nomount
    startup failed: ORA-01078: failure in processing system parameters
    LRM-00109: could not open parameter file 'C:\ORACLE\ORA92\DATABASE\INITCRYSTAL.O
    RA'
    trying to start the Oracle instance without parameter files ...
    Oracle instance started
    Total System Global Area 97591104 bytes
    Fixed Size 454464 bytes
    Variable Size 46137344 bytes
    Database Buffers 50331648 bytes
    Redo Buffers 667648 bytes
    RMAN> RESTORE SPFILE TO 'C:\oracle\admin\crystal\pfile\init.ora' from 'C:\oracle
    \ora92\CRYSTALbk\C-2995630462-20110214-00';
    Starting restore at 30-MAR-11
    using channel ORA_DISK_1
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of restore command at 03/30/2011 11:30:07
    ORA-00600: internal error code, arguments: [1866], [0x41AA450], [6144], [0x41BAD
    B4], [], [], [], []
    RMAN>
    Am I not correctly connected to the target?
    It looks like it correctly tried to create a dummy spfile, but when attempting the restore from the file it breaks.
    Any suggestions? Thanks.

  • Cookie problem with this forum?

    Today I am no longer able to connect with this forum with my Safari browser. All I receive in a page with the 6 categories and nothing else. Also, I am not able to log in. However, I can log in using Foxfire with all the topics correctly displayed. I suspect it must be a cookie problem and if that is so, I'm not sure where to go in Safari to delete cookies.

    Same problem is back after only one day. When using Safari (latest version), if I click on the following link...
    http://discussions.apple.com/category.jspa?categoryID=218
    All I see is the Category headings (no latest posts) and I'm NOT automatically signed in. When I attempt to sign in, I then go the the "new user" data page. After signing in, I get very restrictive access to the forum.
    When I sign in with Firefox, everything is normal. Yesterday when I had this problem, I erases the cookies from Safari and everything returned to normal. I hate to have to erase my cookies everyday to get access here as I prefer to use Safari.
    Is this happening to anyone else?

  • PeopleSoft 8.53 Integration with Oracle SES

    Dear All,
    My System Details are : 
    Machine 1
    Hostname : host1
    Port : port1
    Application : PeopleSoft 8.53 + HCM 9.2 (DEMO) + Oracle 11g
    Default IB Node : PSFT_HR
    OS : Windows 7 (64 Bit)
    Machine 2
    Hostname : host2
    Port : port2
    Application :Oracle Secure Enterprise Search 11.1.2.2.0
    OS : Windows 2008 Server (64 Bit)
    Machine 3
    Hostname : host3
    Port : port3
    Application : PeopleSoft 8.53 + ELM 9.2 (DEMO) + Oracle 11g
    Default IB Node : PSFT_LM
    OS : Windows 7 (64 Bit)
    No Error was encountered while installation and systems started without any error.
    I was able to integrate PeopleSoft HCM with Oracle SES (with great help from my forum friends ).
    I was able to establish Global search in HCM 9.2.
    Now I have PeopleSoft ELM installed on host3. I need to integrate this to the same SES Server Installed on host2.
    In identity management setup on Oracle SES entry is given for host1(HCM).
    How can I achieve this. I know I need to establish Single-Signon between ELM and HCM but, I am not sure how.
    Kindly help.

    Thanks HakanBiroglu for the response.
    I went through the post. I am aware of these steps.
    But I need help on point 2.
    2.There should be single sign on setup between these DB's
    How to achieve this ?

Maybe you are looking for

  • Safari 2.0.4  IS this BETA?

    Safari 2.0.4 It constantly locks up (not responding) I'd like to give it a response! It quits while deleting email repeatedly. I'd like to delete IT! If this is BETA is there a higher one I can download and how and do I need to get rid of the 2.0.4?

  • 5800 XpressMusic issues

    I have the number stored in SIM and phone memory still when a person gives a call i can only see the number and not the "NAME" which i have stored. This is irritating. Other issue i have faced it gets stuch sometimes in touch screen when a call comes

  • How to add a blank entr in dropdown list...??

    Hi all, I want to add a blank entry along with the datas into a drop down list for some purpose. Can anyone please sugeest how to do this task. Thanks in advance, Sekhar

  • XSLT: Mask the in jacascript function

    Hi everybody, in a XSLT I have to call a javascript function. The javascript function has to use a loop: for (var i=0, i < 10, i++){ But this is not allowed because the < normally opens a element like e.g <xsl:template name="mytemplate"> So what can

  • TimeStamp - Add Months

    Dear All, I have the requirement to calculate an opportunity 'contract end date' as follows: User Populates: Contract Start Date = 01/11/2008 Contract Duration (Months) = 4 Calculation Required: Contract End Date = 01/03/2009 Any suggestions? A simpl