Cannot Unzip gz file in AIX

I am trying to unzip Oracle's client installable file 10gr2_aix5l64_client.cpio.gz. When i tried
# gunzip 10gr2_aix5l64_client.cpio.gz
I got the error gunzip: 10gr2_aix5l64_client.cpio: File too large
Any thoughts on this?

I use 'chuser fsize=-1 oracleuser' command on AIX, which alters config files e.g. /etc/security/limits. The command will create a stanza for your Oracle software owner os account, like this:
oracle:
        fsize = -1-1 means unlimited and as explained in the limits file, the soft limit setting becomes default for hard limit.
Login/su to oracle and check ulimit -a and ulimit -aH.
edit:
Major correction, about using chuser command instead of directly hacking files. I have scripts normally so I can forget about the details =)
Message was edited by:
orafad

Similar Messages

  • Cannot unzip files in lion

    Hi my wife, on a macbook air 2011, and Lion cannot unzip some files, actually she can unzip, but they do not appear correctly when unzipped (PPTX), whereas on my macbookpro 2009 with snow leopard i can, anybody have any ideas on how this can be fixed, i don't want to have to do all the work for her, she receives many files.
    I cannot atach the files as they are under NDA

    ok, Mark, thanks, but i am not that stupid if i can open them in my macboopro....
    she has office 2011.Anyway from the apple side it seems all is ok, this happened also on a windows computersomething about microsfot not being able to read its own crappy files, i can open them with Lotus symphony.
    Thanks for all the help, it seems it is a microsoft problem (stupid company, why does anyone actually use their crap, nobody can tell me)

  • Cannot unzip the image file from Sun

    I have downloaded the first compressed install CD image file from Sun. But it cannot be unzip. I used almost all of the unzip software(such as Winzip, WinRAR, PKUNZIP for DOS and for Windows).
    Anybody can help me?

    OK! I downloaded for the 5th time without using GetRight and I can now unzip the file in question. For some reason GetRight chokes on this zip file only. All of the other images were downloaded using GetRight and they unzipped just fine. Go figure...
    My reccomendation to anyone else using a download tool like GetRight and having the same problem is to disabled the tool temporarily and just do a normal download through your browser.
    Hope someone finds this useful.
    Bob C.
    Make that another ditto!!! I have downloaded the
    first CD image for x86 Solaris 4 times now. Each time
    the download has succeeded without error, but I can
    not open the zip file. I have been using GetRight 4.3
    to do the download rather than straight FTP or HTTP so
    maybe this is the issue, but I have never had a
    problem using this tool before.
    Help anyone!?!?!?!
    Bob C

  • Problem in unzip a file

    hai,
    Iam trying to unzip a file but its not working.
    //Unzip a file
      final int BUFFER = 2048;
      String zfname=application.getRealPath("/") + "temp/Bulk.zip"; 
           File  zf=new File(zfname);
      try {
             BufferedOutputStream dest = null;
             FileInputStream fis = new FileInputStream(zf);
             ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fis));
             ZipEntry entry;
             while((entry = zis.getNextEntry()) != null)
                                       System.out.println("Extracting: " +entry);
                     int count;
                     byte data[] = new byte[BUFFER];
                    // write the files to the disk
                    File outFile=new File(outPath);
                    //FileOutputStream fos = new FileOutputStream(outFile);
                    FileOutputStream fos = new FileOutputStream(entry.getName());
                    dest = new BufferedOutputStream(fos, BUFFER);
                    while ((count = zis.read(data, 0, BUFFER))!= -1)
                        dest.write(data, 0, count);
                    dest.flush();
                    dest.close();
             zis.close();
          } catch(Exception e) {
             e.printStackTrace();
    Bulk.zip folder has the following files:
    Bulk/test.txt
    Bulk/fm.jsp
    I get the following exception
    java.io.FileNotFoundException: Bulk\test.txt
    (The system cannot find the path specified)
    Iam i making mistake in this line
    FileOutputStream fos = new FileOutputStream(entry.getName());
                    dest = new BufferedOutputStream(fos, BUFFER);Thanks,
    Thanuja.

    ok vijay iam so sorry for not mentioning how i rectified it. somehow i missed it. may be was bit excited when i got the result.
    anyways below code worked.
    //Unzip a file
        String zip_fname=request.getParameter("zfilename")!=null?request.getParameter("zfilename"):"";
        String fromZip=zip_fname;
        //out.println("FromZip:"+fromZip);
        File zipFname=new File(newFileName);
        String toLocation=newFilePath; //path to unzip the file
        String seperator = System.getProperty("file.separator");
        System.out.println("unzipping zip file to "+toLocation);
        try
            BufferedOutputStream dest = null;
            File zipDir = new File(toLocation);
             zipDir.mkdir();
            ZipFile zip = new ZipFile(fromZip);
            final int BUFFER = 2048;
            FileInputStream fin=new FileInputStream(fromZip);
            ZipInputStream zis = new ZipInputStream(new BufferedInputStream(fin));
            ZipEntry entry;
            while((entry = zis.getNextEntry()) != null)
                     //System.out.println("Extracting: " +entry);
                     int count;
                     byte data[] = new byte[BUFFER];
                     String zip_Fname=entry.getName().substring(entry.getName().lastIndexOf("/")+1);
                        if(!zip_Fname.equals(""))
                            zipFiles.add(zip_Fname);
                  if(!zip_Fname.equals(""))  
                     FileOutputStream fos = new FileOutputStream(toLocation + seperator + entry.getName().substring(entry.getName().lastIndexOf("/")+1));
                     dest = new BufferedOutputStream(fos, BUFFER);
                     while ((count = zis.read(data, 0, BUFFER))!= -1)
                        dest.write(data, 0, count);
                    dest.flush();
                    dest.close();
             zis.close();
        catch (Exception ex)
            unZipResult++;
            System.out.println(ex);
        }Thanks,
    Thanuja.

  • Unzip the file archived by the File adapter

    Hi Experts,
    we have a scenario where we are archiving a xml file using the File adapter and also it is being zipped by the OS command.
    the script not only zips the file, it also rename the file from *.zip to *.xml.
    Hence after archiving when I am trying to open it, the content appears to be junk.
    Please suggest how to unzip the file as it got a extension *.xml.
    And I also tried renaming the file to *.zip and then to uncompress, but it shows below error
    Cannot open : it does not appear to be a valid archive
    Thanks in advance,
    MK

    hi Mk,
    instead of using OS command try using the exesting module provided by the SAP, so your job will be easy.
    follow this steps in the module processing for UN ZIP
    Processing sequence:
    Module name: AF_Modules/PayloadZipBean
    Type: Local Enterprise Bean
    Module key: 3
    u2022 Module configuration:
    Module key: 3
    Parameter name: zip.mode
    Parameter value: unzip.
    in the commincation channel specify filename.xml
    so you can open the file in XML format
    Thanks,
    Madhav
    Note:points if useful
    Edited by: madhav poosarla on Aug 14, 2008 8:31 AM

  • Cannot extract Zip file with Winzip after zipping with java.util.zip

    Hi all,
    I write a class for zip and unzip the text files together which can be zip and unzip successfully with Java platform. However, I cannot extract the zip file with Winzip or even WinRAR after zipping with Java platform.
    Please help to comment, thanks~
    Below is the code:
    =====================================================================
    package myapp.util;
    import java.io.* ;
    import java.util.TreeMap ;
    import java.util.zip.* ;
    import myapp.exception.UserException ;
    public class CompressionUtil {
      public CompressionUtil() {
        super() ;
      public void createZip(String zipName, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        FileOutputStream fos = null ;
        BufferedOutputStream bos = null ;
        ZipOutputStream zos = null ;
        File file = null ;
        try {
          file = new File(zipName) ; //new zip file
          if (file.isDirectory()) //check if it is a directory
         throw new UserException("Invalid zip file ["+zipName+"]") ;
          if (file.exists() && !file.canWrite()) //check if it is readonly
         throw new UserException("Zip file is ReadOnly ["+zipName+"]") ;
          if (file.exists()) //overwrite the existing file
         file.delete();
          file.createNewFile();
          //instantiate the ZipOutputStream
          fos = new FileOutputStream(file) ;
          bos = new BufferedOutputStream(fos) ;
          zos = new ZipOutputStream(bos) ;
          this.writeZipFileEntry(zos, fileName); //call to write the file into the zip
          zos.finish() ;
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (fos != null)
         fos.close() ;
          if (bos != null)
         bos.close();
          if (zos != null)
         zos.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
      private void writeZipFileEntry(ZipOutputStream zos, String fileName)
          throws ZipException, FileNotFoundException, IOException, UserException {
        BufferedInputStream bis = null ;
        File file = null ;
        ZipEntry zentry = null ;
        byte[] bArray = null ;
        try {
          file = new File(fileName) ; //instantiate the file
          if (!file.exists()) //check if the file is not exist
         throw new UserException("No such file ["+fileName+"]") ;
          if (file.isDirectory()) //check if the file is a directory
         throw new UserException("Invalid file ["+fileName+"]") ;
          //instantiate the BufferedInputStream
          bis = new BufferedInputStream(new FileInputStream(file)) ;
          //Get the content of the file and put into the byte[]
          int size = (int) file.length();
          if (size == -1)
         throw new UserException("Cannot determine the file size [" +fileName + "]");
          bArray = new byte[(int) size];
          int rb = 0;
          int chunk = 0;
          while (((int) size - rb) > 0) {
         chunk = bis.read(bArray, rb, (int) size - rb);
         if (chunk == -1)
           break;
         rb += chunk;
          }//end of while (((int)size - rb) > 0)
          //instantiate the CRC32
          CRC32 crc = new CRC32() ;
          crc.update(bArray, 0, size);
          //instantiate the ZipEntry
          zentry = new ZipEntry(fileName) ;
          zentry.setMethod(ZipEntry.STORED) ;
          zentry.setSize(size);
          zentry.setCrc(crc.getValue());
          //write all the info to the ZipOutputStream
          zos.putNextEntry(zentry);
          zos.write(bArray, 0, size);
          zos.closeEntry();
        catch (ZipException ze) {
          throw ze ;
        catch (FileNotFoundException fnfe) {
          throw fnfe ;
        catch (IOException ioe) {
          throw ioe ;
        catch (UserException ue) {
          throw ue ;
        finally {
          //close all the stream and file
          if (bis != null)
         bis.close();
          if (file != null)
         file = null ;
        }//end of try-catch-finally
    }

    Tried~
    The problem is still here~ >___<
    Anyway, thanks for information sharing~
    The message is:
    Cannot open file: it does not appear to be a valid archive.
    If you downloaded this file, try downloading the file again.
    The problem may be here:
    if (fos != null)
    fos.close() ;
    if (bos != null)
    bos.close();
    if (zos != null)
    zos.close();
    if (file != null)
    file = null ;
    The fos is closed before bos so the last buffer is not
    saved.
    zos.close() is enough.

  • Auto unzip "zipped" files inside OWB. possible?

    Scenario:
    Client will be placing large fixed-delimited files in a directory w/c are in ZIPPED format. This file directory will be my source location.
    Question?
    Is there a way to automate the process of unzipping the files in OWB and placing it in the same directory. I am thinking of using a process flow but I cannot find any utility activity for this. Any suggestions?
    Thanks
    -carlo

    I haven't done it for a while, but I manage to archive files from the workflow via a script.
    In the workflow you have to use the ExternalProcess command.

  • Zip from OS Tiger yet cannot unZip without different OS Leopard

    I have Tiger 10.4.11 installed with 1.4.2_18 Java.
    I created a Zipped file using the Finder menu within the operating system. Now that I have the file it will not unZip without upgrading to Java 1.5 which requires Leopard. My hardware on both of my systems will not run Leopard.
    Why can't the operating system that zipped the file unzip it?

    I attempted to unZip using UnStuffIt but the file came up corrupted. I do not know whether this is truly corrupted this time or just the way StuffIt Expander describes a file it cannot unZip. I have seen that happen before many times.
    I took the file that was Stuffed instead of Zipped and it came out half the original size once it was expanded using StuffIt Expander.
    1024mb original file=>880mb stuffed=>660mb unstuffed
    The same file Zipped using the Zip application built in OSX only compressed to 980mb.
    A factor seems to be the 1gb size of the original file.

  • Unzip dmp file

    export_full_hp.dmp.Z
    to unzip this file on AIXTL07 i should do
    unzip export_full_hp.dmp.Z & it should work?

    I am not sure what AIXTL07 is but we run on AIX and we use compress/uncompress to compress export dump files into .Z files and back again.
    HTH -- Mark D Powell --

  • Error when unzipping compressed files in portal

    Hi,
    I am using Oracle AS Portal 10g v 9.0.4. When unzipping a compressed file in a portal page I get the following error for each of the files in the zip:
    ERROR: Failed to create overview_9041_new_features.pdf
    ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWDOC_API", line 914 ORA-06510: PL/SQL: unhandled user-defined exception ORA-06512: at "PORTAL.WWSBR_API_BULKLOAD", line 44 ORA-00001: unique constraint (PORTAL.WWDOC_DOCU_UK) violated ORA-06512: at "PORTAL.WWSBR_API_BULKLOAD", line 216 ORA-06512: at line 1
    Can anyone help?

    hi,
    have you tried to delete and purge this item and re-upload the zip file again ?
    another option to unzip the file would be to upload the file via Webfolders (WebDAV) from your windows explorer and unzip it directly from there. this could be a workaround for your problem.
    if the error reproduces and you cannot use the workaround i suggest to open a service request with oracle support services.
    regards,
    christian

  • A client has sent me an indesign file I cannot open. She says she has updated to Indesign CC 2014. I am a CC member and fully updated my own software but cannot open the file she has sent me, not even if she saves as an IDML, how do I resolve the problem?

    A client has sent me an indesign file I cannot open. She says she has updated to Indesign CC 2014. I am a CC member and fully updated my own software but cannot open the file she has sent me, not even if she saves as an IDML, how do I resolve the problem?

    There are a few things to try.
    First, if this file came to you vial email attachment, it could have been corrupted. Ask her to zip the file and send it again. That sometimes helps.
    I suppose there's a chance that the file is already zipped, so see if that's the case and unzip it if so.
    If the file name doesn't end with .indd, add it and see if that helps.
    If you are double-clicking, try File>Open from within InDesign.
    Last (and I know this sounds like a joke, but I've seen it many times), sometimes people attach a Mac Alias or Windows Shortcut instead of the actual file. What is the file size? If it's really small, that might be the reason.
    Also, no offense intended if some of this sounds like stuff you have already tried. I don't know what you know, so I'm just spit-balling.

  • Unzipping music files

    We have music files that we zipped to save space, now we cannot unzip the music files. Anyone know how to open and unzip the music?

    What happens after you double click it?
    Did you create the .zip files using OS X?
    Example:

  • Fatal error LNK1181: cannot open input file"OLDNAMES.LIB

    Hello, everybody.
    My problem is :'fatal error LNK1181: cannot open input file "OLDNAMES.LIB"'
    Somebody can help me?
    Thanks a lot for your assistance.
    I tried to passe a C structure between Forte and C.
    I taked the exemple of fort&eacute; : technote ID : 10637.
    We use Forte 3.0.j.1 and I try the example on a NT4 server.
    There are several projects that make up this application. They are as follows:
    StructExampleGUI - This is this project. It is the GUI front
    (File: StructGu.Pex) end that calls the C wrapper.
    StructSharedObjects - This project defines the Employee object
    (File: StructSh.Pex) that is needed for both the GUI and
    for the StructExampleServices project.
    StructExampleServices - This project defines the StructExample
    (File: StructSO.Pex) services object. This is a restricted
    project whose purpose is to actually call
    the C project.
    StructExampleProject - This is the External C Project that defines
    (File: Struct.Pex) the interface necessary for Forte to generate
    the wrapper code needed to call the C file.
    StructEX.c - This is the C code that is being wrappered. It
    has one function getemployee that modifies an
    input output structure. The memory allocation is
    done by Forte in the StructExampleServices
    project.
    First of all, I compile the StructEx.C
    After, in the Struct.pex, I set the parameter :
    HAS PROPERTY
    CompatibilityLevel = 0;
    ProjectType = LIBRARY;
    Restricted = TRUE;
    MultiThreaded = TRUE;
    LibraryName = 'struct';
    extended = (Externalincludedirectories='e:/Pgmprod/cpp/50/include
    e:/Pgmprod/cpp/50/lib',
    ExternalObjectFiles = 'O:/Herve/ForteAPI/structex');
    I load the struct.pex.
    Double click on the StructExampleProject
    File:Configure As:Library
    Make distibution and select Full make, Install in current Environment & Auto
    Compile
    When I tried this in the first time, I has a probleme with struct.bom. I
    resolved
    that. (technote 11431:Autocompile on NT fails to build the compiled partition)
    But now, I'm another problem (see below) and I don't find the solution.
    Somebody can help me? Thanks a lot for your assistance.
    The problem : Fort&eacute; say 'fatal error LNK1181: cannot open input file
    "OLDNAMES.LIB"'
    BEGIN FILE
    Working directory is e:\pgmprod\forte\30J1\tmp\cg4\pc_nt\struct
    Processing BOM file: struct.bom
    Microsoft (R) 32-bit C/C++ Optimizing Compiler Version 11.00.7022 for 80x86
    Copyright (C) Microsoft Corp 1984-1997. All rights reserved.
    struct.cc
    Microsoft (R) 32-Bit Incremental Linker Version 5.00.7022
    Copyright (C) Microsoft Corp 1992-1997. All rights reserved.
    /DLL /NOD
    /OUT:struct.dll
    /DEF:struct.nti
    struct.obj
    O:\Herve\ForteAPI\structex.obj
    e:\pgmprod\forte\30J1\install\lib\qqsm.lib
    e:\pgmprod\forte\30J1\install\lib\qqfo.lib
    e:\pgmprod\forte\30J1\install\lib\qqdo.lib
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    e:\pgmprod\forte\30J1\install\lib\qqcm.lib
    e:\pgmprod\forte\30J1\install\lib\qqkn.lib
    e:\pgmprod\forte\30J1\install\lib\MSVCRT.LIB
    e:\pgmprod\forte\30J1\install\lib\qqsh.lib
    OLDNAMES.LIB OLDNAMES.LIB KERNEL32.LIB USER32.LIB GDI32.LIB WINSPOOL.LIB
    COMDLG32.LIB SHELL32.LIB WSOCK32.LIB NETAPI32.LIB WINMM.LIB ADVAPI32.LIB
    LINK : fatal error LNK1181: cannot open input file "OLDNAMES.LIB"
    cl /W3 /Gf /GX /MD /c /Ob1 /vmg /DSTRICT /DWIN32 /D__WIN32__ /DLIBOO_DLL
    /DWIN32_LEAN_AND_MEAN /Ie:\pgmprod\forte\30J1\install\inc\cmn
    /Ie:\pgmprod\forte\30J1\install\inc\os
    /Ie:\pgmprod\forte\30J1\install\inc\ds
    /Ie:\pgmprod\forte\30J1\install\inc\handles /Ie:\pgmprod\forte\30J1
    /Ie:\Pgmprod\cpp\50\include /Ie:\Pgmprod\cpp\50\lib /Fostruct.obj /Tp struct.cc
    link @linkopt.lrf
    Error during compilation, aborting.
    END FILE
    Completed compilation for PC NT.
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    Hussein,
    Please find below the requested information,
    1. Path variable value after sourcing the apps env file,
    D:\oracle\VIS\apps\apps_st\appl>APPSVIS_oracletemp.cmd
    ECHO is off.
    ECHO is off.
    Tue 11/23/2010 02:36 PM
    ECHO is off.
    ECHO is off.
    Setting environment for using Microsoft Visual Studio 2008 x86 tools.
    APPSORA.cmd exiting with status 0
    D:\oracle\VIS\apps\apps_st\appl>
    D:\oracle\VIS\apps\apps_st\appl>echo %path%
    C:\VS2008\Common7\IDE;C:\VS2008\VC\BIN;C:\VS2008\Common7\Tools;C:\Windows\Micros
    oft.NET\Framework\v3.5;C:\Windows\Microsoft.NET\Framework\v2.0.50727;C:\VS2008\V
    C\VCPackages;C:\Program Files\\Microsoft SDKs\Windows\v6.0A\bin;D:\oracle\VIS\ap
    ps\apps_st\appl\au\12.0.0\bin;D:\oracle\VIS\apps\apps_st\appl\fnd\12.0.0\bin;D:\
    oracle\VIS\apps\apps_st\appl\ad\12.0.0\bin;D:\oracle\VIS\apps\tech_st\10.1.3\app
    sutil\jdk\jre\bin;D:\oracle\VIS\apps\tech_st\10.1.3\perl\5.8.3\bin\MSWin32-x86-m
    ulti-thread\;D:\oracle\VIS\apps\apps_st\comn\util\unzip\unzip;D:\oracle\VIS\apps
    \tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.2\bin;D:\oracle
    \VIS\apps\tech_st\10.1.3\appsutil\jdk\bin;D:\oracle\VIS\apps\tech_st\10.1.3\apps
    util\jdk\jre\bin;C:\cygwin\bin;C:\Windows;C:\Windows\system32;D:\oracle\VIS\apps
    \tech_st\10.1.3\ant\bin
    D:\oracle\VIS\apps\apps_st\appl>
    2. gnumake version is as follows,
    D:\oracle\VIS\apps\apps_st\appl>gnumake --version
    GNU Make 3.81
    Copyright (C) 2006 Free Software Foundation, Inc.
    This is free software; see the source for copying conditions.
    There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A
    PARTICULAR PURPOSE.
    This program built for i386-pc-mingw32
    D:\oracle\VIS\apps\apps_st\appl>
    Thanks,
    Rajesh.

  • Cannot unzip Oracle8i Enterprise edition

    I am trying to download & install Oracle8i Enterprise; cannot unzip files - get WinZips error message "Cannot open file: it does not appear to be a valid archive. If you downloaded this file, try to download it again". I tried it di not work.
    Windows 2000 NT
    MS Internet Explorer 5.5

    hi all
    is it a .zip or a .tar.gz?
    probably the download (FTP) was corrupted?!? It happens to me on
    floopies
    or maybe was zipped with some funny winzip...
    cheers
    rjh

  • ORA-27044: unable to write the header block of file / IBM AIX RISC System/6

    We are getting an error like this...
    Oracle 11.2.0.2
    AIX 5.3
    Error:
    CREATE CONTROLFILE REUSE DATABASE "CLMST" RESETLOGS NOARCHIVELOG
    ERROR at line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/clmst02/UAT/oradata/control/control01.ctl'
    ORA-27044: unable to write the header block of file
    IBM AIX RISC System/6000 Error: 89: Invalid file system control data detected
    Additional information: 3
    Additional information: -1
    Additional information: 1

    ORA-09817 IBM AIX RISC System/6000 Error: 89
    Oracle 11.2.0.2
    AIX 5.3
    Related Errors:-
    Mon Nov 05 18:33:51 2012
    ARC3 started with pid=30, OS id=954622
    ARC1: Becoming the 'no FAL' ARCH
    ARC1: Becoming the 'no SRL' ARCH
    ARC2: Becoming the heartbeat ARCH
    Errors in file /clmst01/UAT/oracode/app/oracle/diag/rdbms/clmst/clmst/trace/clmst_ora_2514960.trc (incident=17053):
    ORA-00600: internal error code, arguments: [kccugg_end], [], [], [], [], [], [], [], [], [], [], []
    Errors in file /clmst01/UAT/oracode/app/oracle/diag/rdbms/clmst/clmst/trace/clmst_m000_2105586.trc:
    ORA-00313: open failed for members of log group 3 of thread 1
    ORA-00312: online log 3 thread 1: '/clmst02/UAT/oradata/redo/redo03A.log'
    ORA-27037: unable to obtain file status
    IBM AIX RISC System/6000 Error: 2: No such file or directory
    CREATE CONTROLFILE REUSE DATABASE "CLMST" RESETLOGS NOARCHIVELOG
    ERROR at line 1:
    ORA-01503: CREATE CONTROLFILE failed
    ORA-00200: control file could not be created
    ORA-00202: control file: '/clmst02/UAT/oradata/control/control01.ctl'
    ORA-27044: unable to write the header block of file
    IBM AIX RISC System/6000 Error: 89: Invalid file system control data detected
    Additional information: 3
    Additional information: -1
    Additional information: 1
    Cause:-
    Your /clmst02/ mount point might be corrupted.
    Check:-
    fsck /clmst02
    The current volume is: /dev/fslv00
    File system is currently mounted.
    Primary superblock is valid.
    fsck: Performing read-only processing does not produce dependable results.
    *** Phase 1 - Initial inode scan
    *** Phase 2 - Process remaining directories
    *** Phase 3 - Process remaining files
    *** Phase 4 - Check inode allocation map
    File system inode map is corrupt (NOT FIXED)
    fsck: 0507-278 Cannot continue.
    File system is currently mounted.
    fsck: Performing read-only processing does not produce dependable results.
    Fix:-
    Either you can change the file location to another mount points or shutdown the database and run the fsck on /clmst02 mount point to fix the corrupted one & start the database.
    Fix:-
    Recreate the affected Redolog files
    alter database add logfile group 3 (
    '/clmst02/UAT/oradata/redo/redo03A.log',
    '/clmst03/UAT/oradata2/redo/redo03B.log',
    '/clmst04/UAT/oradata3/redo/redo03C.log') size 50m reuse;

Maybe you are looking for

  • PI 7.1 are released for Customer use??

    Hi All: Is PI 7.1 is ready for customer use? Meaning can I install PI 7.1 and start exploring that?? Farooq.

  • Null session variable

    Ok, i have a problem which is really annoying me and i have been stuck on for a while. I am developing a website for my brothers company and am really stuck for time for the launch date. I developed a website last year which worked fine and i am re u

  • ESTATISTICAL CeCo

    Hello to everyone.. i never use estatitical posting and when i run the system information ( cost centers Actual/Plan/Variance ) s_alr_87013611 i can check some cost centers ( from the same group ) some with estatistical values and anothers NO. i chec

  • WM_SETFONT On ListView Works, But GetTextMetrics And GetTextExtentPoint32 Are Wrong.

    Hi again folks:    The user can use a dialog to set the font typeface, size and type (bold or italic) for a ListView in a dialog.     This works great by setting the user's choices in a LOGFONT and deriving a font handle, then sending the font handle

  • RW-20019: No install action have been found

    i m using windows server 2008 enterprise(64bit) at both end, i successfully installed DB in 1st node i.e. DB Server, also copy the conf_SID.txt file to 2nd node i.e. Application server, i browse the config file that i hav copied from DB Node but it g