Problem with RMAN on Oracle8.1.7 on Redhat Linux 6.2

Hi, does anyone who is using Oracle with the configuration listed below having problems running RMAN?
- Redhat 6.2 with kernel upgraded to 2.2.16-3
- Oracle 8.1.7 EE for Linux
I don't seem to be able to start RMAN even though I have enable LARGE_POOL_SIZE in the parameter file.
Whenever I type rman at the prompt, it just hangs!
If I issue rman catalog rman/rmancatdb, it will return with an error saying can't connect to catalog.
I got these messages when creating the recovery catalog for the 1st time.
I suspect its the rman executable that is playing pranks with me. I even issue "relink all" and still can't run rman.
If anyone know a solution to this please reply. Thanks.

Hi there,
Its funny...I found a solution to my problem from oracle metalink.
if anyone face the same problem you can see the solution here.
The solution is....check your PATH in .bash_profile
Make sure the $ORACLE_HOME/bin is specified before the $PATH so that it can call the right Oracle rman executable. This is becoz Linux has a command by the same name rman.
The Oracle metalink explanation is below.
On typing rman at the command prompt, the process goes for a hang. The rman utility
is not invoked nor there is any error message displayed at the prompt.
If the user types rman -h , then the following error message appears on the
screen:
rman
[-f <ASCII|roff|TkMan|Tk|Sections|HTML|SGML|MIME|LaTeX|LaTeX2e|RTF|pod>]
[-S(ource of man page passed in)] [-F(ormatted man page passed in)]
[-r <man reference printf string>] [-l <title printf string>]
[-V(olume) <colon-separated list>] [-U(RLs as hyperlinks)]
[-b (show subsections)] [-k(eep head/foot)]
[-n(ame of man page) <string>] [-s(ection) <string>]
[-p(aragraph mode toggle)] [-t(abstops spacing) <number>]
[-N(ormalize spacing, changebars)] [-y (zap hyphens toggle)]
[-K (declare that page has no breaks)]
[-d(iff) <file> (old version of page source to incorporate)]
[-M(essage) <text> (included verbatim at end of Name section)]
[-R(ebus words for TkMan)] [-C (enable Tcl/Tk formatting)]
[-o (no op)] [-O <arg> (no op with arg)]
[-q(uiet--don't report warnings)] [-h(elp)] [-v(ersion)]
[<filename>]
Solution Description
Find out which rman utility is invoked by typing ,
'which rman' at the command prompt.
Ensure that the correct utility is invoked from $ORACLE_HOME/bin directory.
Explanation
In linux, there is a OS utility called rman. This utility is used for formatting
purposes.This resides in the /usr/bin directory.
If the ORACLE_HOME is not set properly or the PATH variable contains ORACLE_HOME/bin
at the end instead of beginning, then the rman utility provided by oracle is
not invoked.Also, no error message is thrown out, since there is another utility
by the same name.
When the environment variables are properly set, then the correct utility is
invoked from the $ORACLE_HOME/bin
Good Luck to whoever needs this solution.
null

Similar Messages

  • Problem with RMAN incomplete recovery

    Oracle Version: 9i
    Operating System: Windows 2000
    I have a problem with RMAN incomplete recovery until sequence.
    According to my database structure ............
    SQL> SELECT GROUP#,SEQUENCE#,THREAD# FROM V$LOG;
    GROUP# SEQUENCE# THREAD#
    1 14 1
    2 13 1
    3 12 1
    I took the backup of backup of full database using RMAN and i am trying to recover like this:
    RUN
    ALLOCATE CHANNEL C1 TYPE DISK;
    SET UNTIL SEQUENCE 7 THREAD 1;
    RESTORE DATABASE;
    RECOVER DATABASE;
    ALTER DATABASE OPEN RESETLOGS;
    BUT i am getting a message saying there is no backup of DATAFILE 1,2,......10 to restore although my database is in archivelog mode and i took a backup.
    Yachendra

    Please consult v$backup_datafile.
    It will tell you when the file was backed up.
    RMAN will always search for a datafile backup prior to the logsequence or whatever is limiting the incomplete recovery.
    Likely when you made your backup Oracle was already past sequence 7.
    Sybrand Bakker
    Senior Oracle DBA

  • Problems with a thread that records dvd on suse linux

    PLEASE HELP
    I am using SuSE linux, and I record dvd+/- RW with the program growisofs.
    By command line on the linux shell, growisofs records normally, but when I try to use the same line cone that I use in the shell in a java thread, it never stops recording, I mean, it records all data, but it apparently does not close the dvd session, for the grenn light on the drive never stops blinking, and I have to stop the proccess manually, because it never releases the dvd drive.
    I use the thread in a large program, but for debugging this I have made a simple program, whose error is the same.
    the code is:
            String s = "/usr/local/bin/growisofs -speed=1 -M /dev/dvdram  -V MIS27 -A growisofs -P MedImServer " +
               " -p MedImServer -sysid Linux -J -R -l -relaxed-filenames -allow-lowercase -allow-multidot  /windows/C/online";
           Process p;
                try {
                    p = Runtime.getRuntime().exec(s);
                    p.waitFor();
                catch (IOException ex) {
                    JOptionPane.showMessageDialog(null,"erro no runtime");
                    System.exit(0);
                catch (InterruptedException ex1) {
                    JOptionPane.showMessageDialog(null,"erro no waitfor");
                    System.exit(0);
                }with JBuilder 9 debug, I realized that it freezes at the moment of "p.waitFor()".
    I thought that it was a problem with the recording software, but it is not: the same command line that I use in the program I have used in the Linux shell and it recorded perfectly. The program does not require any user interaction but the command line I wrote before. The problem with the Java program is that it records all data, but never returns from the process. It's not a problem with the software, for it records perfectly when it's not called within the Java program, so I imagine that it is some funny thing in either the Runtime.getRuntime().exec(...) or the p.wait().
    Better yet:
    Is there a way to record dvds with a java command instead with an exteranal program?
    This would be the heaven...
    IF it is possible, do it require some sun package?
    Thans
    Tiago

    Did you mean like this?
            Process p = null;
            String s = null;
            File f;
            try {
                f = new File(pathtmp);
                f.mkdir();
                if(VERBOSE) Log.info(GRAVA_LOG_MARK + "Pasta " + f.getPath() + " criada");
                for (Iterator iter = estudos.iterator(); iter.hasNext(); ) {
                    HashMap item = (HashMap) iter.next();
                    String id = (String) item.get("id_paciente");
                    String dt_hr = (String) item.get("dt_hr_estudo");
                    String estudo = id + "." + dt_hr;
                    File dir = new File(distriOff.path);
                    String[] arquivos = dir.list(new FiltroInicio(estudo));
                    for (int i = 0; i < arquivos.length; i++) {
                        File src = new File(distriOff.path + arquivos);
    File dest = new File(pathtmp + arquivos[i]);
    try {
    Util.copy(src, dest);
    catch (Throwable ex) {
    Log.error(mensagem + " " + ex);
    prop.enviaMsg(mensagem + " " + ex);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + ex);
    String os = System.getProperty("os.name");
    String modo;
    if(midia.getEspaco_disponivel_midia() == midia.getTamanho_midia()) {
    //primeira gravagco
    modo = "-Z";
    else {
    //gravagco de novas segues
    modo = "-M";
    String speed = "-speed=1";
    String cmd = "/usr/local/bin/growisofs " + speed + " " + modo + " " + dvdDevice + " "
    +" -V " + prop.getIdMidiaAtual() + " -A growisofs -P MedImServer "
    +"-p MedImServer -sysid " + os + " -J -R -l -relaxed-filenames -allow-lowercase -allow-multidot " + pathtmp;
    p = Runtime.getRuntime().exec(cmd);
    p.waitFor();
    catch (IOException ex){
    Log.error(mensagem + " " + ex);
    prop.enviaMsg(mensagem + " " + ex);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + ex);
    catch (InterruptedException ex) {
    Log.error(mensagem + " " + ex);
    prop.enviaMsg(mensagem + " " + ex);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + ex);
    try
    BufferedReader stdInput = new BufferedReader(new InputStreamReader(p.getInputStream()));
    // Lj saida padrco do comando
    while ( (s = stdInput.readLine()) != null)
    Log.info(GRAVA_LOG_MARK + s);
    catch (IOException ex)
    Log.error(mensagem + " " + ex);
    prop.enviaMsg(mensagem + " " + ex);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + ex);
    try
    BufferedReader stdErr = new BufferedReader(new InputStreamReader(p.getErrorStream()));
    // Lj qualquer erro do comando
    while ( (s = stdErr.readLine()) != null) {
    Log.info("Processo de Gravagco: " + s);
    if((s.indexOf("failed") != -1) || (s.indexOf("error") != -1) || (s.indexOf("unable") != -1)) {
    Log.error(mensagem + " " + s);
    prop.enviaMsg(mensagem + " " + s);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + s);
    catch (IOException ex)
    Log.error(mensagem + " " + ex);
    prop.enviaMsg(mensagem + " " + ex);
    throw new ExcecaoDistribuicao(ExcecaoDistribuicao.ERRO, mensagem + " " + ex);
    I tried to execute it, and it indeed doesn't freeze, but it doesn't record a thing either...
    now it doesn't even wait for the thread, which is VERY weird: it does not record a thing!!! It just passes by the line 'p.waitFor()'...
    Any sugestion?
    By the way, thanks for helping me...
    Tiago

  • Problem with rman backups

    We upgraded, the rman catalog due to the following error:
    PL/SQL package RMAN.DBMS_RCVCAT version 11.02.00.01 in RCVCAT database is not current PL/SQL package RMAN.DBMS_RCVMAN version 11.02.00.01 in RCVCAT database is not current
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of sql command at 01/17/2011 21:00:36
    ORA-03114: not connected to ORACLEWe registered our database on the catalog again
    problem we have now is that our backup fails with the following errors:
    RMAN> connect target *
    2> connect catalog *
    3>
    4> run {
    5>      crosscheck archivelog all;
    6>     }
    7>
    connected to target database: MAC (DBID=710471977)
    connected to recovery catalog database
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of crosscheck command at 01/20/2011 06:00:29
    ORA-03114: not connected to ORACLEany suggestions, as to how we can fix these errors

    Must this be done fron the local machine where my backup scripts reside..
    or must it be done on the catalog server?????
    I ran the crosscheck command from the local machine without connecting to the catalog
    here are the eroors I received:
    oracle $ rman
    Recovery Manager: Release 11.2.0.2.0 - Production on Thu Jan 20 11:42:42 2011
    Copyright (c) 1982, 2009, Oracle and/or its affiliates.  All rights reserved.
    RMAN> connect target /
    connected to target database: MAC (DBID=710471977)
    RMAN> run{
    2> crosscheck backup COMPLETED AFTER 'sysdate-1';
    3> }
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of crosscheck command at 01/20/2011 11:43:48
    RMAN-12010: automatic channel allocation initialization failed
    ORA-03114: not connected to ORACLE
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    ORA-03114: not connected to ORACLE
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of crosscheck command at 01/20/2011 11:43:48
    RMAN-12010: automatic channel allocation initialization failed
    ORA-03114: not connected to ORACLE

  • Problem with RMAN.

    Hi, i worked with Oracle Database 10g Express Edition, my problem is the execute the Backup utility, display the message error:
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03009: fallo del comando backup en el canal ORA_DISK_1 en 08/17/2008 15:30:
    01
    ORA-19566: se ha excedido el lÝmite de 0 bloques corruptos para el archivo C:\OR
    ACLEXE\ORADATA\XE\SYSTEM.DBF
    Recovery Manager terminado.
    ==================== ERROR =============================
    Backup of the database failed.
    RMAN Error - See log for details .
    Log file is at C:\ORACLEXE\APP\ORACLE\PRODUCT\10.2.0\SERVER\DATABASE\OX
    E_BACKUP_CURRENT.LOG.
    ==================== ERROR =============================
    Roberto.

    Have you reviewed:
    RMAN-03009: failure of backup command; ORA-19566: exceeded limit of ...
    HTH,
    Scott

  • Problem with Installing the Oracle8i PO into Windows ME

    I think I have the same problem as some of you had. Recently, I bought the Oracle Book and it has 3 discs: 1 for Oracle Developer 6 for Win 95 or 98, 1 for Oracle 8i PO (release 8.1.5) for Win 95, also 1 for Win 98.
    My computer had no problem when I installed the Or. Developer. However, my computer won't allow me to install the Oracle 8i PO Win 98 disc. Instead of that, I have no problem of installing the Oracle 8i PO Win 95 disc. After I installed the Win 95 disc with all correct configuration according to the instructions, I can not CONNECT to the database. So, is this mean the Windows ME is compatible with the Win 95 disc? Or my computer is "screw up"? Because I know Win Me is very much the same as Win 98. If I installed the Win 98 disc, it should be ok. Anyway, I installed the Win 95 disc successful, but can not CONNECT.
    So if anyone can help me out, or need a specific error message, I will post up next time. For now, I think I already gave you guys a "head-ache"... sorry.... Thanks all! Wait for your helps guys!

    What drivers are you attempting to install?
    - Peter

  • Problem with RMAN script

    Hi,
    I have wriiten RMAN script to report need backup?below the code
    #!/bin/ksh
    export ORACLE_SID=test1
    echo $ORACLE_SID
    export ORACLE_HOME=/u01/app/oracle/product/10.2.0/db_1
    echo $ORACLE_HOME
    export PATH
    echo $PATH
    RMAN=$ORACLE_HOME/bin/rman
    $RMAN target sys/sys@test1 nocatalog
    RUN {
    report need backup;}
    exit;
    echo "Completd"The problem is that when i run the script it goes into the RMAN prompt and doesnt run "report need backup". I guess its unable to recognize the run command.below the error
    ./full_db_hot_backup.sh[14]: RUN: not found [No such file or directory]
    ./full_db_hot_backup.sh: line 14: syntax error at line 15: `}' unexpected

    Write as following
    $ORACLE_HOME/bin/rman << EOF
    connect target /
    run
    report need backup;
    exit
    EOF
    Talip Hakan Ozturk
    http://taliphakanozturken.wordpress.com/

  • Problems with RMAN redundancy retention

    Edited by: 878226 on Dec 5, 2011 7:05 PM

    paste from sql
    SQL>show parameter control_file_record_keep_timeAs well paste yours daily backup scripts.

  • Problems with the JNDI in Websphere App Server for Linux .

    I'm working with EJBs and I have tested mine with WTE in VAJ. The problem is when I try to access them on a remote client. What I have done so far:
    1:export the bean group to a Jar File
    for the administration "Web page"
    2:add an application by selecting the good Jar file
    3:I set the JNDI name
    4:save the new server configuration
    5: restart the WAS server.
    We have tryed to bind on the initial context (from
    CNInitialContextFactory) and we had an Operation not supported exception. The lookup was giving a exception saying that it couldn't find the object. (We think that the CNInitialContextFactory is unknown on the server.
    We are wondering if there could be some compatibility issue because the server uses java 1.3 and us 1.2.2 (VAJ 3.5.3). On the linux Server java 1.1.8 is also installed but WAS comes with its own java version. The path in the administration "web page" for the path for java is set. (the path from linux console is on java1.1.8 but that shouldn't matter right ? )
    thanks for your help

    Compatibility issues would not through an ObjectNotFound Exception. Maybe the problem is as simple as a class path issue. What object was not found- the Context class or the Object that you were attempting to bind to some name?

  • Weird problems with Smartcard (Java 1.6, PKCS#11, OpenSC, Linux)

    Summary: After accessing the PKCS#11 keystore I thought it would be a cake to encrypt/decrypt stuff within Java. At first I created a Cipher object with the approprate provider ("SunPKCS11-OpenSC") and selected a supported algorithm ("RSA/ECB/PKCS1Padding"). That done, I wanted to encrypt a single text message which did fail with java.security.InvalidKeyException: init() failed.
    After searching the web I found [a thread|http://search.sun.com/search/clickthru?qt=smartcard&col=developer-forums&cksum=afe91b01a2dea2bc99a47d8754fb022d&url=http%3A%2F%2Fforum.java.sun.com%2Fthread.jspa%3FforumID%3D9%26threadID%3D572349&path=%2Fsearch%2Fonesearch%2Findex.jsp&hit=4] here from a guy which had a similar problem. I read, that while you cannot encrypt successfully with the private key it works with the public key. I tested it and it worked, but the decryption failed again. After "some" runs I received an error message from the OpenSC middleware layer:
    pkcs15-lib.c:3354:sc_pkcs15init_update_file: File 3f0050154403 too small (require 287, have 256) - please increase size in profile
    java.security.InvalidKeyException: Could not create RSA public key
    I ended up having four automagically created public keys on my card and I have no room for others. I don't know what's going on, but for sure I did call no method which creates data objects on my card. You find my environment at the bottom. For those who are interested, here is a code snippet:
            public void ciphertest() {                                                                                                                                           
                    System.out.println("Test for en- and decrypting stuff.");                                                                                                    
                    char[] pin = { '0', '0', '0', '0' };                                                                                                                         
                    try {                                                                                                                                                        
                            // KeyStore erzeugen                                                                                                                                 
                            KeyStore ks = KeyStore.getInstance("PKCS11", providerName);                                                                                          
                            ks.load(null, pin);                                                                                                                                  
                            System.out.println("  KeyStore loaded. Size: "+ks.size());                                                                                           
                            // Elemente im KeyStore anzeigen lassen                                                                                                              
                            //ciphertest_listKeyStoreElements(ks);                                                                                                               
                            // Schluesselobjekt erzeugen                                                                                                                         
                            String alias = "Certificate";                                                                                                                        
                            PrivateKey kpriv = (PrivateKey) ks.getKey(alias, null);                                                                                              
                            X509Certificate cert = (X509Certificate) ks.getCertificate(alias);                                                                                   
                                                                                                                                                                                                         System.out.println("  PrivateKey.getAlgorithm: "+kpriv.getAlgorithm());                                                                              
                            System.out.println("  PrivateKey.getFormat: "+kpriv.getFormat());                                                                                    
                            // Cipherobjekt erzeugen und initialisieren f�r Verschl�sselung                                                                                      
                            Cipher c = Cipher.getInstance("RSA/ECB/PKCS1Padding", providerName);                                                                                 
                            //System.out.println(c.getParameters());                                                                                                             
                            //System.out.println(c.getProvider().getInfo());                                                                                                     
                            // Verschl�sseln                                                                                                                                     
                            String message = "La dolce vita!";                                                                                                                   
                            System.out.println("  Message to be encrypted: '"+message+"'");                                                                                      
                            c.init(Cipher.ENCRYPT_MODE, cert);                                                                                                                   
                            System.out.println("  Encrypting...");                                                                                                               
                            byte[] ciphertext = c.doFinal(message.getBytes());                                                                                                   
                            System.out.println("  Length of cipher: "+ciphertext.length);                                                                                        
                            // Entschl�sseln                                                                                                                                     
                            c.init(Cipher.DECRYPT_MODE, kpriv);                                                                                                                  
                            System.out.println("  Decrypting...");                                                                                                               
                            byte[] cleartext = c.doFinal(ciphertext);                                                                                                            
                            // Test auf Gleichheit                                                                                                                               
                            System.out.println(new String(cleartext));                                                                                                           
                    } catch (Exception e) {                                                                                                                                      
                            System.out.println(e.toString());                                                                                                                    
    Environment: I set up OpenSC (with pcsc-lite) under Linux. My smartcard is the G&D Starcos SPK 2.3, my reader the Reiner SCT pinpad pro (a). I have created the PKCS#15 structure on the card via OpenSC's pkcs15-init tool, created the private/public keys and uploaded a certificate. The certificate is recognized by Java's keystore. I can browse the card, dump contents via opensc. I can access the card via Java, like setting the keystore and list the contents.

    I had not much time today, but I managed to find out that the call to the Cipher.init() method wants to add and has successfully created/added public key objects on my smartcard (which I cannot remove anymore :-().
            public void ciphertest_SunPKCS11_unwanted_keys() {                                                                                                                   
                    log("Test: SunPKCS11 provider creates unwanted public keys on smartcard.");                                                                                  
                    char[] pin = { '0', '0', '0', '0' };                                                                                                                         
                    try {                                                                                                                                                        
                            KeyStore ks = KeyStore.getInstance("PKCS11", providerName);                                                                                          
                            ks.load(null, pin);                                                                                                                                  
                            X509Certificate cert = (X509Certificate) ks.getCertificate("Certificate");                                                                           
                            Cipher c = Cipher.getInstance("RSA/ECB/PKCS1Padding", providerName);                                                                                 
                            c.init(Cipher.ENCRYPT_MODE, cert);                                                                                                                   
                    } catch (Exception e) {                                                                                                                                      
                            System.out.println(e.toString());                                                                                                                    
            }  Any suggestions what's going on here? This is driving me nuts, one day was planned for this and now three days have been consumed.

  • I got a problem with JavaScript on my selfmade homepage, Win only, Linux works!

    Hi there!
    My site is still in building process. But I've reached the point to get to designing, the technical issues are worked out, except for this one. Funnily with FF on Linux all works fine, but on Windows (7) it doesn't quite workas it should. Here it is:
    http://folkadelic.de/baustelle/alpha/index.php?page=store
    Now, on Win it keeps loading (I wonder what), the indicator in the tab keeps circling. When I click on an audio-track it stops loading. Only if I click a second time it does, what it's supposed to do - play back the audio. This should happen with the first click. :)
    On Linux, as stated, it works like a charm.
    I would be really grateful, if someone could tell me, what I might have done wrong coding, or if it's some kind of bug in FF/Win. I ran out of ideas...
    Thanks in advance for any clues and help!!!
    chris

    The disk cache isn't used (is disabled) if you use "Clear history when Firefox closes" to clear the cache.<br />
    You can check that on the about:cache page (you can open the <b>about:cache</b> page via the location bar).<br />
    Clearing the cache would only affect the memory cache and items in the disk cache remain unchanged.

  • Problems installing OCS infra 9.0.3 on redhat linux 7.3 or 8.0

    Hi,
    every time i try to run linux_marconi_10_infra installation, when installer checks for Pre-requisities, it says that "at least 256MB RAM needed for installation..." and forwards to previous screen.
    system has 256Mb RAM, we even tried 512Mb RAM but message left the same all the time.
    is any method to disable this memory check?
    thanks in advance
    Saulius Speicys

    Use Red hat Linux Advance Server 2.1

  • Problem with mime type in web.xml file

    Hi everybody,
    I actually got a problem with mime types on Weblogic 6.0 under Linux.
    I read the documentation so I added the next lines in the web.xml file in
    the WEB-INF directory of my server :
    <mime-mapping>
    <extension>
    doc
    </extension>
    <mime-type>
    application/msword
    </mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>
    ppt
    </extension>
    <mime-type>
    application/vnd.ms-powerpoint
    </mime-type>
    </mime-mapping>
    Why can't I retrieve a .doc or .ppt files with an internet browser correctly
    ? I get only text/plain ...
    Can someone help me ?
    Regards,
    Alexis Berger

    I am having the same problem with doc and xsl. I have added this
    <mime-mapping>
    <extension>xls</extension>
    <mime-type>application/vnd.ms-excel</mime-type>
    </mime-mapping>
    <mime-mapping>
    <extension>doc</extension>
    <mime-type>application/msword</mime-type>
    </mime-mapping>
    to my web.xml. I even restarted the server. I still see doc and xsl in binary.
    Is there some other setting that needs to take place?
    I am using WL6.1 with fixpack 1.
    I can see the doc and excel files in the browser if I don't go through the weblogic
    server. That just confirms it's not my browser.
    Kumar Allamraju <[email protected]> wrote:
    <!doctype html public "-//w3c//dtd html 4.0 transitional//en">
    <html>
    It works fine for me in 6.1 SP1.
    <br><br>
    If the following doesn't work , can you
    <br>try application/winword instead of application/msword?
    <p>--
    <br>Kumar
    <p>Siming Mu wrote:
    <blockquote TYPE=CITE>Hi,
    <p>I setup in my web.xml a mime mapping as follows,
    <p><mime-mapping>
    <br><extension>doc</extension><mime-type>application/msword</mime-type>
    <br></mime-mapping>
    <p>When I specify a test.doc url, the doc file appears in my browser
    as
    binary data
    <br>instead of download.
    <p>Please reference change request 055002, which decribes this problem. 
    According
    <br>to edocs, it has been fixed in wls6.1sp1.
    <p>But I am seeing it fixed.  Am I doing anything wrong? Thanks.
    <p>Siming</blockquote>
    </html>

  • RMAN for Oracle8.0.5 problem

    Hi Experts,
    I am using OmniBackII3.5 Media Management s/w. I am taking online backup. Its working fine with above Oracle8.0.5.
    We are using
    Oracle 8.0.6 HPUX10.2
    Oracle 8.0.16 HPUX 11.0 in these no problem.
    In Oracle8.0.5 with Sun 2.7, Backup is failing. I came to know from somebody, RMAN of Oracle8.0.5 is buggy.
    1. Is it true RMAN of Oracle8.0.5 buggy.
    2. is there any patches available for fix this.
    3. Is there any solutions to overcome this problem.
    Your suggetions will be highly appriciated.
    With Regards
    Rajesh

    Rajesh,
    What kind of errors is your backup failing with?
    Thanks, Tammy

  • RMAN problem with block corruption

    Hi
    I have problem with the block corruption in one of the database .
    here is the error message .
    ora-01578:oracle data block corrupted (file# 10,block # 55309) ora-01110: data file 10:
    '/db/gist1/data/gist1_gis_nologging_01.dbf' ora-26040: data block was loaded using the NOLOGGING option .
    gisq SQL> select * from v$database_block_corruption;
    FILE# BLOCK# BLOCKS CORRUPTION_CHANGE# CORRUPTIO
    10 11 126 3754364971 LOGICAL
    RMAN> blockrecover datafile 10 block 11;
    Starting blockrecover at 14/DEC/2012 16:25:48
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of blockrecover command at 12/14/2012 16:25:48
    RMAN-05009: Block Media Recovery requires Enterprise Edition
    Could some one help me in providing solution for this . we we have standard addition only .
    Thanks in advance ...

    It appears that there was a NOLOGGING operation on an object that resides in '/db/gist1/data/gist1_gis_nologging_01.dbf' .
    NOLOGGING operations, as the name suggests, do generate limited redo log, which makes the objects affected by them non-recoverable.
    RMAN Blockrecover, as far as I understand, uses full and archivelog backup to perform the block recovery. Since the archivelog backup does not store any changes related to the NOLOGGING operation, then Blockrecover would not be able to help you even if you were licensed.
    You can try to restore the object as of the most recent full backup…
    Iordan Iotzov
    http://iiotzov.wordpress.com/

Maybe you are looking for

  • How do I tell if a radio button is selected?

    Apart from relying on the radiohandler, is there any direct command or code which i can use to immediately check if a particular radio button is selected or not? Like in Visual Basic, we can immediate state if (radiobutton.value = false) is there any

  • OWB Naming Conventions and Development Standards

    Hi all, I am developing a project in OWB. Could any one give me 'OWB Naming Conventions and Development Standards' document.

  • How to disable distortion correction for micro 4/3 lens

    Hello, I have an Olympus E-P2 and Panasonic 14-45mm lens.  Adobe Lightroom 3 and Photoshop CS5 appear to be performing some very heavy-handed distortion correction at the wide-end of the zoom (running the file through a different raw converter yields

  • Operation confirmation display in REM

    Hi, In my REM scenario, I am doing backflushing in MFBF, this leads to auto goods issue and auto GR of finished product( No reporting point backflushing). I am doing 'Post with correction' and then entering qty for goods issue and then actual timing

  • FlashPlayer installed, videos won't play

    The site tells me You have version 10,1,102,64 installed Yet when I go to some sites like ABC News or Qwiki, videos do not appear. I briefly get a message that says I need to install the latest version of FlashPlayer, but as you can see above, it's a