File system /oracle/SID/sapdata3 empty after EP 6.0 installation

Hi Friends
I'm installing EP 6.0 on WAS 6.40- SR1, AIX 5.1/Oracle 9.2.0 central system, where the Oracle database & the central instance are installed on the same host using the standard SAP DVD's, the installlation guide "SAP Web Application Server Java 6.40 SR1 on AIX: Oracle - Planning & Preparation" specifies creating 4 filesystems /oracle/SID/sapdata1, 
/oracle/SID/sapdata2, /oracle/SID/sapdata3, /oracle/SID/sapdata4.
I created the 4 filesystems but notice that after completing the installation with portal up & running, filesystem /oracle/SID/sapdata3 is empty, with no directories & files created inside. Can anybody advice if this filesystem doesn't gets any files, then why SAP document asks to create this in 1st place.
Thanks & Rgds,
Abhishek

Hi Abhishek,
Kindly go through the sap note 972263, it clearly explains the file system required and the size.
SAP NetWeaver 2004s SR2 Java:
File System Name Space Requirement
/oracle/<DBSID>/sapdata1 1 GB
/oracle/<DBSID>/sapdata2 3 GB
/oracle/<DBSID>/sapdata3  -  GB
/oracle/<DBSID>/sapdata4 6 GB
SUM 10 GB
Regards
Manjunath

Similar Messages

  • Unix file system & Oracle datafiles--urgent plz

    How i can chech my oracle db files on which unix file system? In HP/UX exvirnment??

    select * from dba_data_files
    AUTOEXTENSIBLE column gives you whether autoextend is on or not.
    Join with dba_free_space to get free space for each file.
    You can check the following link
    http://www.oracle.com/technology/oramag/code/tips2003/083103.html

  • File Browse is emptied after failed validation

    Why does the file browse text box get emptied after a failed validation? Is there any way to prevent this?
    To further explain, create a form on a page with two page items, a text box and a file browse item, then put a not null validation on the text box. When you submit the page with a null text box, but with a file selected for the browse button, then validation catches and throws the error message back to the user when the page refreshes. However, the file browse text box is emptied, and the user has to reselect the file before resubmitting the page.
    Is this a bug, or just the way it is supposed to work? Any way around it?
    Thanks,
    Kris
    Edited by: kshenn on Oct 31, 2008 7:06 AM

    Hello,
    >> Is this a bug, or just the way it is supposed to work?
    This is not a bug. Actually, it has nothing to do with APEX. The behavior of the file browse item is controlled by the HTML standard, which clears the field for security reasons.
    If you pay close attention to Denes example, you’ll see that even when the validation error page is displayed, the file browse item itself is being cleared. The JavaScript generated file path is the one that retain its value. I don’t have access to Denes code, but I’m assuming that in his uploading procedure he’s using the JavaScript generated path.
    >> Any way around it?
    Where the file browse item is concern, no workaround.
    In your specific case, where the validation you need is “not null”, you can create a JavaScript validation, and fire it before submitting the page (as part of the submit button). That way, the browser will not clear the file browse item, because the page will not be submitted without proper values in your items.
    Regards,
    Arie.

  • [BUG?] af:table table empty after descending sort and remove

    Hi,
    I think i found a bug.
    I have an af:table binded to an arraylist in a backingbean. This List consist of an object that represents two strings (value 1 and 2).
    Now when the table is loaded and I sort descending on one of the columns. After sorting i'll try to remove a row. The correct row is published to the bean with an af:setPropertyListener and removed from the arraylist. But when the table is rendered again there are no values in the table. But the arraylist still has all remaining values which will be shown after a sort again.
    Fun fact: it only happens when sorting descending.
    Anyone got an idea?
    The code:
    jspx:
    <?xml version='1.0' encoding='UTF-8'?>
    <jsp:root xmlns:jsp="http://java.sun.com/JSP/Page" version="2.1"
              xmlns:f="http://java.sun.com/jsf/core"
              xmlns:h="http://java.sun.com/jsf/html"
              xmlns:af="http://xmlns.oracle.com/adf/faces/rich">
      <jsp:directive.page contentType="text/html;charset=UTF-8"/>
      <f:view>
        <af:document id="d1">
          <af:form id="f1">
            <af:panelStretchLayout topHeight="50px" id="psl1">
              <f:facet name="top">
                <af:panelHeader text="Table with Data Values" id="ph1">
                  <f:facet name="context"/>
                  <f:facet name="menuBar"/>
                  <f:facet name="toolbar"/>
                  <f:facet name="legend"/>
                  <f:facet name="info"/>
                </af:panelHeader>
              </f:facet>
              <f:facet name="center">
                <af:panelCollection id="pc1">
                  <f:facet name="menus"/>
                  <f:facet name="toolbar"/>
                  <f:facet name="statusbar"/>
                  <af:table value="#{dataHandler.dataList}" var="row"
                            binding="#{dataHandler.rt}"
                            rowBandingInterval="0" id="t1">
                    <af:column sortable="true"  headerText="Value1" align="start"
                               id="c1" sortProperty="value1">
                      <af:inputText value="#{row.value1}" id="it1"/>
                    </af:column>
                    <af:column sortable="true" headerText="Value2" align="start"
                               id="c2" sortProperty="value2">
                      <af:inputText value="#{row.value2}" id="it2"/>
                    </af:column>
                    <af:column sortable="false" headerText="Actions"
                               id="c3" >
                      <af:commandLink id="verwijderRij" text="Verwijder" >
                          <af:setPropertyListener from="#{row}" to="#{dataHandler.verwijderRij}" type="action"/>
                          </af:commandLink>
                    </af:column>
                  </af:table>
                </af:panelCollection>
                <!-- id="af_one_column_header_stretched"  -->
              </f:facet>
            </af:panelStretchLayout>
          </af:form>
        </af:document>
      </f:view>
    </jsp:root>the backing beans:
    package nl.ibr.view;
    public class MyDataObject {
      private String value1;
      private String value2;
        public MyDataObject(String value1, String value2) {
            super();
            this.value1 = value1;
            this.value2 = value2;
        public void setValue1(String value1) {
            this.value1 = value1;
        public String getValue1() {
            return value1;
        public void setValue2(String value2) {
            this.value2 = value2;
        public String getValue2() {
            return value2;
    package nl.ibr.view;
    import java.util.ArrayList;
    import java.util.List;
    import oracle.adf.view.rich.component.rich.data.RichTable;
    public class DataHandler {
        private List<MyDataObject> dataList = new ArrayList<MyDataObject>();
        private RichTable rt;
        public DataHandler() {
          dataList.add(new MyDataObject("1","2"));
          dataList.add(new MyDataObject("3","7"));
          dataList.add(new MyDataObject("4","8"));
          dataList.add(new MyDataObject("5","9"));
        public void setDataList(List<MyDataObject> dataList) {
            this.dataList = dataList;
        public List<MyDataObject> getDataList() {
            return dataList;
        public void setVerwijderRij(Object row) {
          System.out.println("Listsize before delete: " + dataList.size());
          System.out.println("Delete row"  + row);
          dataList.remove(row);
          System.out.println("Listsize after delete: " + dataList.size());
          rt.setValue(dataList);
          System.out.println("Done delete method");
        public void setRt(RichTable rt) {
            this.rt = rt;
        public RichTable getRt() {
            return rt;
    }Jdev version information:
    About
    Oracle JDeveloper 11g Release 1 11.1.1.4.0
    Studio Edition Version 11.1.1.4.0
    Build JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    Copyright © 1997, 2011 Oracle and/or its affiliates. All rights reserved.
    IDE Version: 11.1.1.4.37.59.23
    Product ID: oracle.jdeveloper
    Product Version: 11.1.1.4.37.59.23
    Version
    Component     Version
    =========     =======
    ADF Business Components     11.1.1.59.23
    Java(TM) Platform     1.6.0_21
    Oracle IDE     11.1.1.4.37.59.23
    SOA Composite Editor     11.1.1.4.0.56.82
    Versioning Support     11.1.1.4.37.59.23
    Properties
    Name     Value
    ====     =====
    awt.toolkit     sun.awt.windows.WToolkit
    ceditor.java.parse.large     1500
    ceditor.java.parse.small     300
    class.load.environment     oracle.ide.boot.IdeClassLoadEnvironment
    class.load.log.level     CONFIG
    class.transfer     delegate
    compiler.vmargs     -Xmx512m
    EDITOR_J2SE_VERSION     1.5
    feedbackmanager.disable     false
    file.encoding     Cp1252
    file.encoding.pkg     sun.io
    file.separator     \
    http.agent     Mozilla/5.0 (Java 1.6.0_21; Windows XP 5.1 x86; en_US) ICEbrowser/v6_1_3
    http.nonProxyHosts     62.58.52.167|*.local|10.100.6.*|*.randstadrmdnext.nl|*.randstadrentreenext.nl|*.rsg|localhost|localhost.localdomain|127.0.0.1|::1|dp-60520.noa.nl.rsg|dp-60520
    http.proxyHost     proxy.noa.nl.rsg
    http.proxyPort     8080
    https.nonProxyHosts     62.58.52.167|*.local|10.100.6.*|*.randstadrmdnext.nl|*.randstadrentreenext.nl|*.rsg|localhost|localhost.localdomain|127.0.0.1|::1|dp-60520.noa.nl.rsg|dp-60520
    https.proxyHost     proxy.noa.nl.rsg
    https.proxyPort     8080
    ice.browser.forcegc     false
    ice.pilots.html4.ignoreNonGenericFonts     true
    ice.pilots.html4.tileOptThreshold     0
    ide.bootstrap.start     2915472833421
    ide.build     JDEVADF_11.1.1.4.0_GENERIC_101227.1736.5923
    ide.conf     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin\jdev.conf
    ide.config_pathname     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin\jdev.conf
    ide.debugbuild     false
    ide.devbuild     false
    ide.editions     oracle.studio, oracle.j2ee, oracle.jdeveloper
    ide.extension.role.search.path     jdev/roles
    ide.extension.search.path     jdev/extensions:sqldeveloper/extensions
    ide.feedbackmanager.customer     false
    ide.firstrun     false
    ide.java.maxversion     1.7
    ide.java.minversion     1.6.0_04
    ide.launcherProcessId     1596
    ide.main.class     oracle.ide.boot.IdeLauncher
    ide.max.jar.handles     500
    ide.old.user.country     NL
    ide.old.user.language     nl
    ide.patches.dir     jdev/lib/patches
    ide.pref.dir     C:\Documents and Settings\ho01023\Application Data\JDeveloper
    ide.pref.dir.base     C:\Documents and Settings\ho01023\Application Data
    ide.product     oracle.jdeveloper
    ide.shell.enableFileTypeAssociation     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdeveloper.exe
    ide.splash.screen     splash.gif
    ide.startingArg0     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdeveloper.exe
    ide.startingcwd     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper
    ide.throttleLocale     true
    ide.user.dir     C:\Documents and Settings\ho01023\Application Data\JDeveloper
    ide.user.dir.var     JDEV_USER_HOME,JDEV_USER_DIR
    ide.work.dir     \\\JDeveloper
    ide.work.dir.base     \\CP-1000VS03\HOME104\HO01023
    ilog.propagatesPropertyEditors     false
    inJUIDesigntime     true
    insight.suppresshidden     true
    INSIGHT_OMIT_HIDDEN     true
    java.awt.graphicsenv     sun.awt.Win32GraphicsEnvironment
    java.awt.printerjob     sun.awt.windows.WPrinterJob
    java.class.path     ..\..\ide\lib\ide-boot.jar
    java.class.version     50.0
    java.endorsed.dirs     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\endorsed
    java.ext.dirs     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\ext;C:\WINDOWS\Sun\Java\lib\ext
    java.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre
    java.io.tmpdir     C:\DOCUME~1\ho01023\LOCALS~1\Temp\
    java.library.path     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper;.;C:\WINDOWS\Sun\Java\bin;C:\WINDOWS\system32;C:\WINDOWS;D:\Apps\Oracle\Middleware_11_1_1_1_0\jdk160_11\bin;D:\Apps\apache-maven-2.0.9\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Windows Imaging\;C:\Program Files\jZip;D:\Apps\TortoiseSVN\bin;D:\Apps\SlikSvn\bin\;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\Program Files\Tealeaf;
    java.naming.factory.initial     oracle.javatools.jndi.LocalInitialContextFactory
    java.naming.factory.url.pkgs     weblogic.jndi.factories:weblogic.corba.j2ee.naming.url
    java.protocol.handler.pkgs     oracle.fabric.common.uddiurl.handler|oracle.jdevimpl.handler|weblogic.net
    java.runtime.name     Java(TM) SE Runtime Environment
    java.runtime.version     1.6.0_21-b51
    java.specification.name     Java Platform API Specification
    java.specification.vendor     Sun Microsystems Inc.
    java.specification.version     1.6
    java.vendor     Sun Microsystems Inc.
    java.vendor.url     http://java.sun.com/
    java.vendor.url.bug     http://java.sun.com/cgi-bin/bugreport.cgi
    java.version     1.6.0_21
    java.vm.info     mixed mode
    java.vm.name     Java HotSpot(TM) Client VM
    java.vm.specification.name     Java Virtual Machine Specification
    java.vm.specification.vendor     Sun Microsystems Inc.
    java.vm.specification.version     1.0
    java.vm.vendor     Sun Microsystems Inc.
    java.vm.version     17.0-b17
    javax.rmi.CORBA.PortableRemoteObjectClass     weblogic.iiop.PortableRemoteObjectDelegateImpl
    javax.rmi.CORBA.UtilClass     weblogic.iiop.UtilDelegateImpl
    javax.xml.parsers.DocumentBuilderFactory     oracle.xml.jaxp.JXDocumentBuilderFactory
    jbo.debugoutput     silent
    jbo.showdebugwarningbanner     false
    jps.authz     NULL
    line.separator     \r\n
    oracle.adfm.usemds     false
    oracle.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\
    oracle.j2ee.extension.status     enabled
    oracle.jbo.usemds     false
    oracle.jdbc.Trace     true
    oracle.jdeveloper.webservice.hidePropertyOverride     false
    oracle.jdeveloper.webservice.showAllOwsmPolicyTypes     false
    oracle.mds.internal.config.override.emptystore     true
    oracle.security.jps.config     /C:/Documents and Settings/ho01023/Application Data/JDeveloper/system11.1.1.4.37.59.23/DefaultDomain/config/fmwconfig/jps-config-jse.xml
    oracle.soap.transport.noHTTPClient     true
    oracle.translated.locales     de,es,fr,it,ja,ko,pt_BR,zh_CN,zh_TW
    oracle.xdkjava.compatibility.version     9.0.4
    org.omg.CORBA.ORBClass     weblogic.corba.orb.ORB
    org.omg.CORBA.ORBSingletonClass     weblogic.corba.orb.ORB
    os.arch     x86
    os.name     Windows XP
    os.version     5.1
    path.separator     ;
    reserved_filenames     con,aux,prn,lpt1,lpt2,lpt3,lpt4,lpt5,lpt6,lpt7,lpt8,lpt9,com1,com2,com3,com4,com5,com6,com7,com8,com9,conin$,conout,conout$
    sun.arch.data.model     32
    sun.awt.disablegrab     true
    sun.awt.keepWorkingSetOnMinimize     true
    sun.boot.class.path     ../lib/lwawt.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\resources.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\rt.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\sunrsasign.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\jsse.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\jce.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\lib\charsets.jar;D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\classes
    sun.boot.library.path     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdk160_21\jre\bin
    sun.cpu.endian     little
    sun.cpu.isalist     pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
    sun.desktop     windows
    sun.io.unicode.encoding     UnicodeLittle
    sun.java2d.noddraw     true
    sun.jnu.encoding     Cp1252
    sun.management.compiler     HotSpot Client Compiler
    sun.os.patch.level     Service Pack 3
    svnkit.sax.useDefault     true
    user.country     US
    user.dir     D:\Apps\Oracle\Middleware_11_1_1_4_0\jdeveloper\jdev\bin
    user.home     C:\Documents and Settings\ho01023
    user.language     en
    user.name     ho01023
    user.timezone     Europe/Berlin
    user.variant     
    wasp.location     ../../uddi
    weblogic.home     D:\Apps\Oracle\Middleware_11_1_1_4_0\wlserver_10.3\server
    weblogic.security.SSL.ignoreHostnameVerification     true
    weblogic.security.TrustKeyStore     DemoTrust
    windows.shell.font.languages     en
    Extensions
    Name     Identifier     Version     Status
    ====     ==========     =======     ======
    ADF Business Components     oracle.BC4J     11.1.1.4.37.59.23     Loaded
    ADF Business Components Dependency     oracle.bc4j.dependency     11.1.1.4.37.59.23     Loaded
    ADF Business Components Deployment     oracle.bc4jdt.deploy     11.1.1.4.37.59.23     Loaded
    ADF Business Components Modeler     oracle.adfbcdt.modeler     11.1.1.4.37.59.23     Loaded
    ADF Business Components Syscat     oracle.bc4j.syscat     0     Loaded
    ADF Business Components Tester     oracle.bc4j.tester     11.1.1.4.37.59.23     Loaded
    ADF Common Audit     oracle.adf.common.audit     0     Loaded
    ADF Context Debugger     oracle.adf.share.debug     11.1.1.4.37.59.23     Loaded
    ADF Controller Configuration Design Time     oracle.adf.controller.config.dt     11.1.1.4.37.59.23     Loaded
    ADF Data Visualizations Design Time Tests     oracle.dvt.dt     11.1.1.4.37.59.23     Loaded
    ADF Debugger     oracle.adf.debug     11.1.1.4.37.59.23     Loaded
    ADF Debugger Diagram Support     oracle.adf.debug.diagram     11.1.1.4.37.59.23     Loaded
    ADF Desktop Integration Design Time     oracle.adfdt.desktopintegration     11.1.1.4.37.59.23     Loaded
    ADF Faces Cache     oracle.webcache     11.1.1.4.37.59.23     Loaded
    ADF Faces Data Visualization Tools Help     oracle.dvt-faces-doc     11.1.1.0.0     Loaded
    ADF Faces Databinding Design Time     oracle.adf-faces-databinding-dt     11.1.1.4.37.59.23     Loaded
    ADF Faces Design Time     oracle.adf-faces-dt     11.1.1.4.37.59.23     Loaded
    ADF Faces Design Time Migration     oracle.adffacesdt.migration     11.1.1.4.37.59.23     Loaded
    ADF Faces Runtime Help     oracle.adf-faces-rt-doc     11.1.1.0.0     Loaded
    ADF Faces Skin Design Time     oracle.adf-faces-skin-dt     11.1.1.4.37.59.23     Loaded
    ADF JMX Data Control Designtime     oracle.adf.jmxdc     11.1.1.4.37.59.23     Loaded
    ADF Java Server Faces Diagram     oracle.adf.jsf.diagram     11.1.1.4.37.59.23     Loaded
    ADF Library Design Time     oracle.jdeveloper.adflibrary     11.1.1.4.37.59.23     Loaded
    ADF Lifecycle Design Time     oracle.adf.lifecycle.dt     11.1.1.4.37.59.23     Loaded
    ADF Management Pages     oracle.adf.management     11.1.1.4.37.59.23     Loaded
    ADF Menu Model Design-Time     oracle.adfmenudt     11.1.1.4.37.59.23     Loaded
    ADF Page Flow Design Time     oracle.adf.pageflow.dt     11.1.1.4.37.59.23     Loaded
    ADF Page Flow Design Time Extras     oracle.adf.pageflow.dt.extras     11.1.1.4.37.59.23     Loaded
    ADF Page Template DT     oracle.adf-faces-templating-dt     11.1.1.4.37.59.23     Loaded
    ADF Region Design Time     oracle.adf-faces-region-dt     11.1.1.4.37.59.23     Loaded
    ADF Struts Page Flow Modeler     oracle.struts.adf     11.1.1.4.37.59.23     Loaded
    ADF Struts and Model One Databinding     oracle.adf.struts.and.model.one.databinding.dt     11.1.1.4.37.59.23     Loaded
    ADF Swing     oracle.adfdt.swingcore     11.1.1.4.37.59.23     Loaded
    ADF View Debugging Design Time     adf.view.debugging.dt     11.1.1.4.37.59.23     Loaded
    ADFv Common Databinding     oracle.adf-view-databinding-dt     11.1.1.4.37.59.23     Loaded
    Ant     oracle.ant     11.1.1.4.37.59.23     Loaded
    Application Server Manager     oracle.jdeveloper.asnav     11.1.1.4.37.59.23     Loaded
    Application State - Application Navigator     oracle.ideimpl.appstate.appnav     11.1.1.4.37.59.23     Loaded
    Application State - Editors     oracle.ide.appstate.editors     11.1.1.4.37.59.23     Loaded
    Application State Manager     oracle.ide.appstate     11.1.1.4.37.59.23     Loaded
    Archive Compare     oracle.jdeveloper.archive-compare     11.1.1.4.37.59.23     Loaded
    BAM     oracle.bam     11.1.1     Loaded
    BI Beans Graph     oracle.bibeans     11.1.1.4.37.59.23     Loaded
    BM metamodel framework     oracle.bm.meta     11.1.1.4.37.59.23     Loaded
    Bug Reporter     oracle.jdeveloper.bugfiler     11.1.1.4.37.59.23     Loaded
    Business Modelers     oracle.bm     11.1.1.4.37.59.23     Loaded
    Check For Updates     oracle.ide.webupdate     11.1.1.4.37.59.23     Loaded
    Code Editor     oracle.ide.ceditor     11.1.1.4.37.59.23     Loaded
    Command Line Formatting Support     oracle.jdeveloper.ojformat     11.1.1.4.37.59.23     Loaded
    Command Line Make/Rebuild Support     oracle.jdevimpl.oj-compiler     11.1.1.4.37.59.23     Loaded
    Common Controller Design-Time     oracle.controller.dt     11.1.1.4.37.59.23     Loaded
    Common Page Flow Design-Time     oracle.pageflow.dt     11.1.1.4.37.59.23     Loaded
    Component Palette     oracle.ide.palette1     11.1.1.4.37.59.23     Loaded
    Controller to ADF Bindings Bridge     oracle.controller.bindings.dt     11.1.1.4.37.59.23     Loaded
    Database Connection Support     oracle.jdeveloper.db.connection     11.1.1.4.37.59.23     Loaded
    Database Features (JDeveloper)     oracle.jdeveloper.db     11.1.1.4.37.59.23     Loaded
    Database Features (SQLDeveloper in JDeveloper)     oracle.jdeveloper.db.navigator     11.1.1.4.37.59.23     Loaded
    Database Modeler     oracle.dbmodeler     11.1.1.4.37.59.23     Loaded
    Database Modeler Migration     oracle.dbmodeler.migrate     11.1.1.4.37.59.23     Loaded
    Database Object Dependency API Support     oracle.jdeveloper.db.dependency     11.1.1.4.37.59.23     Loaded
    Database Object Explorers     oracle.ide.db.explorer     11.1.1.4.37.59.23     Loaded
    Database Object Transfer Framework     oracle.jdeveloper.db.transfer     11.1.1.4.37.59.23     Loaded
    Database UI     oracle.ide.db     11.1.1.4.37.59.23     Loaded
    Design Time Resource Bundle Variable Resolver     oracle.jdeveloper.resourcebundle.resolver.dt     11.1.1.4.37.59.23     Loaded
    Diagram Framework     oracle.diagram     11.1.1.4.37.59.23     Loaded
    Diagram Framework Toplink extensions     oracle.diagram.toplink     11.1.1.4.37.59.23     Loaded
    Diagram Javadoc Extension     oracle.diagram.javadoc     11.1.1.4.37.59.23     Loaded
    Diagram Thumbnail     oracle.diagram.thumbnail     11.1.1.4.37.59.23     Loaded
    Diagram to XMLEF Bridge     oracle.diagram.xmlef     11.1.1.4.37.59.23     Loaded
    Diff/Merge     oracle.ide.diffmerge     11.1.1.4.37.59.23     Loaded
    EJB     oracle.ejb     11.1.1.4.37.59.23     Loaded
    EJB Modeler     oracle.ejbmodeler     11.1.1.4.37.59.23     Loaded
    Editor Tint     oracle.ide.ceditor-tint     11.1.1.4.37.59.23     Loaded
    Editor Tint (Java)     oracle.jdeveloper.ceditor-tint-java     11.1.1.4.37.59.23     Loaded
    Extended IDE Platform     oracle.javacore     11.1.1.4.37.59.23     Loaded
    Extension Designtime Core     oracle.jdeveloper.extensiondt.core     11.1.1.4.37.59.23     Loaded
    Extension Designtime UI     oracle.jdeveloper.extensiondt.ui     11.1.1.4.37.59.23     Loaded
    External Tools     oracle.ide.externaltools     11.1.1.4.37.59.23     Loaded
    Feedback     oracle.ide.feedback     11.1.1.4.37.59.23     Loaded
    File Support     oracle.ide.files     11.1.1.4.37.59.23     Loaded
    Fusion Application Overview Definition     oracle.ide.appoverview.fusion.definition     11.1.1.4.37.59.23     Loaded
    Fusion Web Application (ADF) Template     oracle.adf.webapp.template     11.1.1.4.37.59.23     Loaded
    Go to File     oracle.ide.gotofile     11.1.1.4.37.59.23     Loaded
    Go to Java Type     oracle.jdeveloper.gotojava     11.1.1.4.37.59.23     Loaded
    HTML     oracle.html     11.1.1.4.37.59.23     Loaded
    Help System     oracle.ide.help     11.1.1.4.37.59.23     Loaded
    History Support     oracle.jdeveloper.history     11.1.1.4.37.59.23     Loaded
    IDE Reports Extension     oracle.ide.report     11.1.1.4.37.59.23     Loaded
    Import/Export Support     oracle.ide.importexport     11.1.1.4.37.59.23     Loaded
    Index Migrator support     oracle.ideimpl.indexing-migrator     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee.webapp.ve     11.1.1.4.37.59.23     Loaded
    J2EE     oracle.j2ee.webapp.ve.facelets     11.1.1.4.37.59.23     Loaded
    J2EE CSS     oracle.css     11.1.1.4.37.59.23     Loaded
    J2EE Faces Config     oracle.j2ee.facesconfig     11.1.1.4.37.59.23     Loaded
    J2EE Web App     oracle.j2ee.webapp     11.1.1.4.37.59.23     Loaded
    J2EE-ADRS     oracle.j2ee.adrs     11.1.1.4.37.59.23     Loaded
    J2ee extension help     oracle.j2ee.help     11.1.1.0.0     Loaded
    JDeveloper     oracle.jdeveloper     11.1.1.4.37.59.23     Loaded
    JDeveloper Runner     oracle.jdeveloper.runner     11.1.1.4.37.59.23     Loaded
    JGoodies Forms     oracle.jdeveloper.jgoodies     11.1.1.4.37.59.23     Loaded
    JPublisher     oracle.jdeveloper.db.jpub     11.1.1.4.37.59.23     Loaded
    JSON Language support     oracle.jdeveloper.json     11.1.1.4.37.59.23     Loaded
    JUnit Integration     oracle.jdeveloper.junit     11.1.1.4.37.59.23     Loaded
    JViews Registration Addin     oracle.diagram.registration     11.1.1.4.37.59.23     Loaded
    Java Annotation Inspector     oracle.jdeveloper.annotation.inspector     11.1.1.4.37.59.23     Loaded
    Java Breadcrumbs     oracle.jdeveloper.ceditor-breadcrumbs-java     11.1.1.4.37.59.23     Loaded
    Java Class Modeler     oracle.javamodeler     11.1.1.4.37.59.23     Loaded
    Java Modeler Toplink extensions     oracle.javamodeler.toplink     11.1.1.4.37.59.23     Loaded
    Java Server Faces Page Flow Modeler     oracle.jsfmod     11.1.1.4.37.59.23     Loaded
    Java Structure Compare     oracle.jdeveloper.java-compare     11.1.1.4.37.59.23     Loaded
    Java Type Search     oracle.jdeveloper.searchbar.java     11.1.1.4.37.59.23     Loaded
    Java extension help     oracle.java.help     11.1.1.0.0     Loaded
    JavaBeans, Swing, and AWT     oracle.swingawt     11.1.1.4.37.59.23     Loaded
    JavaScript Language Support     oracle.ide.javascript     11.1.1.4.37.59.23     Loaded
    Jdeveloper UI Editor     oracle.jdeveloper.uieditor     11.1.1.4.37.59.23     Loaded
    Jdeveloper XML Extension     oracle.jdeveloper.xml     11.1.1.4.37.59.23     Loaded
    Legacy Controller Design-Time     oracle.controller.bm.dt     11.1.1.4.37.59.23     Loaded
    Legacy Preferences integration for BM     oracle.modeler.bm.prefs     11.1.1.4.37.59.23     Loaded
    Log Window     oracle.ide.log     11.1.1.4.37.59.23     Loaded
    MDS Extension     oracle.mds     11.1.1.4.37.59.23     Loaded
    MOF Ide Integration     oracle.mof.ide     11.1.1.4.37.59.23     Loaded
    MOF Modeler Integration     oracle.modeler.mof     11.1.1.4.37.59.23     Loaded
    Mac OS X Adapter     oracle.ideimpl.apple     11.1.1.4.37.59.23     Loaded
    Modeler Framework     oracle.modeler     11.1.1.4.37.59.23     Loaded
    Modeler Framework Common Layer     oracle.modeler.common     11.1.1.4.37.59.23     Loaded
    Modelling migration from BM     oracle.modeler.bm.migrate     11.1.1.4.37.59.23     Loaded
    Navigator     oracle.ide.navigator     11.1.1.4.37.59.23     Loaded
    Nightly Indexing support     oracle.ideimpl.indexing-rt     11.1.1.4.37.59.23     Loaded
    OAR/MAR/SAR Deployment Support Extension     oracle.deploy.orapp     11.1.1.4.37.59.23     Loaded
    OWSM Policy Manager Installer     oracle.jdeveloper.webservice.wsmpm.installer     11.1.1.4.37.59.23     Loaded
    Object Gallery     oracle.ide.gallery     11.1.1.4.37.59.23     Loaded
    Object Viewer     oracle.sqldeveloper.oviewer     11.1.1.64.46     Loaded
    Offline Database     oracle.jdeveloper.offlinedb     11.1.1.4.37.59.23     Loaded
    Offline Database Import/Generate     oracle.jdeveloper.offlinedb.transfer     11.1.1.4.37.59.23     Loaded
    Offline Database Reports Extension     oracle.jdeveloper.offlinedb.report     11.1.1.4.37.59.23     Loaded
    Offline Database SXML     oracle.jdeveloper.offlinedb.sxml     11.1.1.4.37.59.23     Loaded
    Offline Database User Properties     oracle.jdeveloper.offlinedb.userprops     11.1.1.4.37.59.23     Loaded
    Offline Database User Properties SXML     oracle.jdeveloper.offlinedb.userprops.sxml     11.1.1.4.37.59.23     Loaded
    Oracle BPEL 1.1 Designer     oracle.bpel.v1.designer     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 1.1 Designer Plugins     oracle.bpel.v1.designer.plugins     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 2.0 Designer     oracle.bpel.v2.designer     11.1.1.4.0.56.82     Loaded
    Oracle BPEL 2.0 Designer Plugins     oracle.bpel.v2.designer.plugins     11.1.1.4.0.56.82     Loaded
    Oracle BPEL Designer Shared Code     oracle.bpel.designer.shared     11.1.1.4.0.56.82     Loaded
    Oracle BPM DVM     oracle.bpm.dvm     11.1.1.4.0.56.82     Loaded
    Oracle BPM XREF     oracle.bpm.xref     11.1.1.4.0.56.82     Loaded
    Oracle Business Rules Designer     oracle.bpm.rules     11.1.1.4.0.56.82     Loaded
    Oracle Database Browser     oracle.sqldeveloper.thirdparty.browsers     11.1.1.64.46     Loaded
    Oracle Enterprise Repository Editor     oracle.jdeveloper.oereditor     11.1.1.4.37.59.23     Loaded
    Oracle Events Designer     oracle.bpm.events     11.1.1.4.0.56.82     Loaded
    Oracle Fabric Plugins     oracle.sca.modeler.plugins     11.1.1.4.0.56.82     Loaded
    Oracle Human Task Designer     oracle.bpm.workflow     11.1.1.4.0.56.82     Loaded
    Oracle IDE     oracle.ide     11.1.1.4.37.59.23     Loaded
    Oracle JDevloper Deployment Core Module     oracle.deploy.core     11.1.1.4.37.59.23     Loaded
    Oracle MDS Design time     oracle.mds.dt     11.1.1.4.37.59.23     Loaded
    Oracle Mobile ADF     oracle.wireless.dt     11.1.1.4.37.59.23     Loaded
    Oracle Page Templates     oracle.adf-page-template-samples     11.1.1.4.37.59.23     Loaded
    Oracle SOA Composite Editor     oracle.sca.modeler     11.1.1.4.0.56.82     Loaded
    Oracle SOA Mediator     oracle.sca.mediator     11.1.1.4.0.56.82     Loaded
    Oracle SQL Developer     oracle.sqldeveloper     11.1.1.64.46     Loaded
    Oracle SQL Developer Reports     oracle.sqldeveloper.report     11.1.1.64.46     Loaded
    Oracle SQL Developer Worksheet     oracle.sqldeveloper.worksheet     11.1.1.64.46     Loaded
    Oracle User Messaging Service Client Extension     oracle.ums.jdev     11.1.1.4.0     Loaded
    Oracle XML Schema Support     oracle.sqldeveloper.xmlschema     11.1.1.64.46     Loaded
    PL/SQL Debugger     oracle.jdeveloper.db.debug.plsql     11.1.1.4.37.59.23     Loaded
    PROBE Debugger     oracle.jdeveloper.db.debug.probe     11.1.1.4.37.59.23     Loaded
    Peek     oracle.ide.peek     11.1.1.4.37.59.23     Loaded
    Persistent Storage     oracle.ide.persistence     11.1.1.4.37.59.23     Loaded
    Profiler     oracle.jdeveloper.profiler     11.1.1.4.37.59.23     Loaded
    Properties File Support     oracle.jdeveloper.props     11.1.1.4.37.59.23     Loaded
    Property Inspector     oracle.ide.inspector     11.1.1.4.37.59.23     Loaded
    Quick Start Features for Web Applications     quickstart.webapp.dt     11.1.1.4.37.59.23     Loaded
    QuickDiff     oracle.ide.quickdiff     11.1.1.4.37.59.23     Loaded
    REST Web Services     oracle.jdeveloper.webservice.rest     11.1.1.4.37.59.23     Loaded
    Refactoring     oracle.jdeveloper.refactoring     11.1.1.4.37.59.23     Loaded
    Replace With     oracle.ide.replace     11.1.1.4.37.59.23     Loaded
    Reports Extension     oracle.javatools.report     11.1.1.4.37.59.23     Loaded
    Resource Bundle Support     oracle.ide.resourcebundle     11.1.1.4.37.59.23     Loaded
    Resource Bundle Support for Properties Files     oracle.jdeveloper.resourcebundle.props     11.1.1.4.37.59.23     Loaded
    Resource Catalog Application Server Adapter     oracle.jdeveloper.asadapter     11.1.1.4.37.59.23     Loaded
    Resource Catalog DB UI extension     oracle.jdeveloper.db.rcadapter.ui     11.1.1.4.37.59.23     Loaded
    Resource Catalog Database Adapter     oracle.jdeveloper.rcdbadapter     11.1.1.4.37.59.23     Loaded
    Resource Catalog WSIL Adapter     oracle.jdeveloper.rcwsiladapter     11.1.1.4.37.59.23     Loaded
    Resource Lookup     oracle.jdeveloper.rclookup     11.1.1.4.37.59.23     Loaded
    Runner     oracle.ide.runner     11.1.1.4.37.59.23     Loaded
    SQL*Plus Integration     oracle.jdeveloper.db.sqlplus     11.1.1.4.37.59.23     Loaded
    SQLJ     oracle.jdeveloper.sqlj     11.1.1.4.37.59.23     Loaded
    Search Bar     oracle.ide.searchbar     11.1.1.0.0     Loaded
    SearchBar Commands     oracle.ide.searchbar.commands     11.1.1.4.37.59.23     Loaded
    Searchbar Preferences     oracle.ide.searchbar.preferences     11.1.1.4.37.59.23     Loaded
    Snippet Window     oracle.sqldeveloper.snippet     11.1.1.64.46     Loaded
    Struts Page Flow Modeler     oracle.struts     11.1.1.4.37.59.23     Loaded
    Studio     oracle.studio     11.1.1.4.37.59.23     Loaded
    Studio extension help     oracle.studio.help     11.1.1.0.0     Loaded
    Template     oracle.ide.ceditor-template     11.1.1.4.37.59.23     Loaded
    TopLink     oracle.toplink     11.1.1.4.37.59.23     Loaded
    Trinidad Databinding Design Time     oracle.trinidad-databinding-dt     11.1.1.4.37.59.23     Loaded
    Trinidad Design Time     oracle.trinidad-dt     11.1.1.4.37.59.23     Loaded
    UDDI Resource Catalogue Provider     oracle.jdevimpl.uddiadapter     11.1.1.4.37.59.23     Loaded
    UML XMI     oracle.uml.v2.xmi     11.1.1.4.37.59.23     Loaded
    UML v2     oracle.uml.v2     11.1.1.4.37.59.23     Loaded
    UML v2 Activity Modeler     oracle.uml.v2.activity     11.1.1.4.37.59.23     Loaded
    UML v2 Class Diagram     oracle.uml.v2.clazz     11.1.1.4.37.59.23     Loaded
    UML v2 Migration     oracle.uml.v2.migrate     11.1.1.4.37.59.23     Loaded
    UML v2 Sequence Diagram     oracle.uml.v2.sequence     11.1.1.4.37.59.23     Loaded
    UML v2 Transformation to Java     oracle.uml.v2.umljava     11.1.1.4.37.59.23     Loaded
    UML v2 Use Case Diagram     oracle.uml.v2.usecase     11.1.1.4.37.59.23     Loaded
    UML2 Modelers Common Classes     oracle.uml.v2.modeler     11.1.1.4.37.59.23     Loaded
    URL Connection Designtime     oracle.jdevimpl.urlconn     0     Loaded
    VHV     oracle.ide.vhv     11.1.1.4.37.59.23     Loaded
    Versioning Support     oracle.jdeveloper.vcs     11.1.1.4.37.59.23     Loaded
    Versioning Support for Subversion     oracle.jdeveloper.subversion     11.1.1.4.37.59.23     Loaded
    Virtual File System     oracle.ide.vfs     11.1.1.4.37.59.23     Loaded
    WSDL Chooser     oracle.jdeveloper.wsdllookup     11.1.1.0.0     Loaded
    WSDL web services extension     oracle.jdevimpl.wsdl     11.1.1.4.37.59.23     Loaded
    Web Browser and Proxy     oracle.ide.webbrowser     11.1.1.4.37.59.23     Loaded
    Web Services     oracle.jdeveloper.webservice     11.1.1.4.37.59.23     Loaded
    WebDAV Connection Support     oracle.jdeveloper.webdav2     11.1.1.4.37.59.23     Loaded
    WebStart     oracle.j2ee.webstart     11.1.1.0.0     Loaded
    XML Compare     oracle.jdeveloper.xml-compare     11.1.1.4.37.59.23     Loaded
    XML Editing Framework IDE Extension     oracle.ide.xmlef     11.1.1.4.37.59.23     Loaded
    XML Editing Framework Java Integration     oracle.jdeveloper.xmlef     11.1.1.4.37.59.23     Loaded
    XSL Mapper     oracle.bpm.mapper     11.1.1.4.0.56.82     Loaded
    adf-deploy-dt     oracle.adfdt.common.deploy     11.1.1.4.37.59.23     Loaded
    adf-deploy-dt-mds     oracle.adfdt.common.deploy.mds     11.1.1.4.37.59.23     Loaded
    adf-installer-ide     adf.installer.dt     11.1.1.4.37.59.23     Loaded
    adf-logging-dt     oracle.adf.logging.dt     11.1.1.4.37.59.23     Loaded
    adf-model-debugger-dt     oracle.adf-model-debugger-dt     11.1.1.4.37.59.23     Loaded
    adf-model-sqldc-ide     oracle.adfm.sqldc     11.1.1.4.37.59.23     Loaded
    adf-model-tools     oracle.adf.model.tools     11.1.1.4.37.59.23     Loaded
    adf-security-policy-dt     oracle.adfdtinternal.adf-security-policy-dt     11.1.1.4.37.59.23     Loaded
    adf-share-audit     oracle.adf-share-audit     11.1.1.4.37.59.23     Loaded
    adf-share-deploy-dt     oracle.adf.share.deploy.dt     11.1.1.4.37.59.23     Loaded
    adf-share-dt     oracle.adf.share.dt     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-deploy     oracle.adf.businesseditor.deploy     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-ide     oracle.adf.model.businesseditor     11.1.1.4.37.59.23     Loaded
    adfm-business-editor-settings-ide     oracle.adfm.businesseditor.settings     11.1.1.4.37.59.23     Loaded
    adfmcoredt-xdf     oracle.adfm.xdf     11.1.1.4.37.59.23     Loaded
    adfquerylovdt     oracle.adf-faces-query-and-lov-dt     11.1.1.4.37.59.23     Loaded
    appoverview     oracle.ide.appoverview     11.1.1.4.37.59.23     Loaded
    asnav-weblogic     oracle.jdeveloper.asnav.weblogic     11.1.1.4.37.59.23     Loaded
    audit     oracle.ide.audit     11.1.1.4.37.59.23     Loaded
    audit-core     oracle.ide.audit.core     11

    Hi Harry (and others),
    I have seen similar behavior. It seems like the client side rendering for some reason has a hard time processing the collection model wrapping the ArrayList in this particular case. The table renders empty. After sorting in ascending order, the rows are all back (visible) again.
    Is anyone aware of issues with the rich table based directly on ArrayList (in combination with a changing set of values and/or sorting)? (seems like a corner case but is still not uncommon). Is there any indication that wrapping the ArrayList in a CollectionModel ourselves might be required?
    Harry: do you know whether this issue is introduced with PS3 (11.1.1.4) or already existed in previous releases?
    kind regards,
    Lucas

  • Tablespace: PSAPTEMP # Tablespace files autoextend can cause file system overflow

    Hi All,
    We are seeing the above message after updating the kernel from 701 SP 125 to 720 SP 600.
    I have checked the data files that make up PSAPTEMP and none are set to auto extend so I am confused as to what it is complaining about.
    Tablespace name
    Size(MB)
    Free(MB)
    Used(%)
    Autoextend
    Total size(MB)
    Total free space(MB)
    Total used (%)
    #Files
    #Segments
    #Extents
    Status
    Contents
    Compression
    PSAPTEMP
    11,264.00
    11,262.00
    0
    NO
    11,264.00
    11,262.00
    0
    6
    0
    0
    ONLINE
    TEMPORARY
    DISABLED
    File name
    File Id
    Tablespace name
    Size(MB)
    #Blocks
    Status
    Rel. file number
    Autoextensible
    Maxsize(MB)
    Maxblocks
    Increment by
    User size(MB)
    User blocks
    /oracle/SID/sapdata1/temp_1/temp.data1
    1
    PSAPTEMP
    2,048.00
    262,144
    AVAILABLE
    1
    NO
    0
    0
    0
    2,047.00
    262,016
    /oracle/SID/sapdata1/temp_2/temp.data2
    2
    PSAPTEMP
    2,048.00
    262,144
    AVAILABLE
    2
    NO
    0
    0
    0
    2,047.00
    262,016
    /oracle/SID/sapdata1/temp_3/temp.data3
    3
    PSAPTEMP
    2,048.00
    262,144
    AVAILABLE
    3
    NO
    0
    0
    0
    2,047.00
    262,016
    /oracle/SID/sapdata3/temp_4/temp.data4
    4
    PSAPTEMP
    3,072.00
    393,216
    AVAILABLE
    4
    NO
    0
    0
    0
    3,071.00
    393,088
    /oracle/SID/sapdata2/temp_5/temp.data5
    5
    PSAPTEMP
    1,024.00
    131,072
    AVAILABLE
    5
    NO
    0
    0
    0
    1,023.00
    130,944
    /oracle/SID/sapdata2/temp_6/temp.data6
    6
    PSAPTEMP
    1,024.00
    131,072
    AVAILABLE
    6
    NO
    0
    0
    0
    1,023.00
    130,944
    Any ideas how to resolve this or is it a bug?
    Thanks
    Craig

    Hi Craig,
    Deactivating the alert could be the latest solution, but you should first check how the tempfiles are setup. If they are set as sparse files they might not use all the allocated space at FS level, but might grow up to it and cause an overflow...
    To deactivate that behavior you should copy temp files with a specific cp option (--sparse=never) to deactivate the sparse attribute as explained in the here under notes (the 2nd one is for 11g only thus not valid for you).
    Regards
    548221 - Temporary Files are created as sparse files
    Oracle creates files of temporary tablespaces as sparse files.
    'Sparse' is a special property a file in Unix operating systems can have. Sparse files are files that can dynamically grow and shrink depending on their content. So many sparse files can use a common pool of free disk space. Also the creation of a sparse file is much faster than creation of a normal file.
    Problems can occur if sparse files on the same disk grow in parallel and there is not sufficient free disk space for all to extend.
    Usage of sparse files is not a bug. Therefore there is no possibility to tell Oracle not to use sparse files for the temporary tablespace if the operating system offers sparse file functionality.
    1864212 - Forcing complete space allocation for temp files
    By default, temp files are not initialized when the file is created and therefore the disk space is not pre-allocated in the file system.

  • /oracle/SID/920_64  is 98%

    Dear Guru's,
                      We are using sap on oracle 9 using sun solaris 10 operating system.
    The file <b>/oracle/SID/920_64</b> size has reached 98%. Can u suggest what files can be deleted from that file system.
    Regards
    Akif

    Dear Markus,
                      Here is the result after running the command u suggested:-
    bash-3.00# for i in `ls`; do du -ks $i; done
    39      Apache
    0       JRE
    924     OPatch
    314115  assistants
    363607  bin
    27      classes
    117851  ctx
    1605701 dbs
    78393   demo
    1       diagnostics
    2081    ds
    118     hs
    303     install
    12478   inventory
    0       jar
    247366  javavm
    26726   jdbc
    45701   jdk
    71285   jlib
    62466   jre
    44683   ldap
    226005  lib
    113713  lib32
    0       lost+found
    10231   md
    1064    mgw
    44309   network
    9       oci
    23750   ocommon
    1       oraInst.loc
    570     oracore
    42324   ord
    3511    otrace
    13095   oui
    18365   owm
    936     plsql
    8685    precomp
    84768   rdbms
    1820    relnotes
    5       root.sh
    7       root.sh.old
    0       sapbackup
    6       slax
    2236    sqlplus
    234     srvm
    1091    syndication
    5       sysman
    5       tg4ifmx
    4       tg4ingr
    5       tg4sybs
    4       tg4tera
    41506   ultrasearch
    2182    wwg
    18658   xdk
    Regards
    Akif

  • Procedure  to create file system in AIX  or HP-UX

    hi gurus
    i have to install SAP BI on one HP-UX server. unfortunately the OS admin is not available and i have to cretae file systems too.
    can any one tell me how  to create file systems in HP-UX which are required for SAP installation on Oracle. i know the all the directories required for the installation but i just wonder is it like just create directory like
    /usr/sap/<SID>  and  mount on to any logical volume.  or the procedure is different from what i am thinking
    please help

    thanks kishore.
    such a genious . grt.

  • Globaldevices file system

    Hi
    Solaris Cluster 3.3 u2 on Solaris 10 x86.
    I have dedicated slice for global device file system. During the cluster creation, i have not chosen the default method which is lofi method.
    For node "node1",
        Is it okay to use this default (yes/no) [yes]?  no
        Testing for "/globaldevices" on "node1" ... done
    For node "node2",
        Is it okay to use this default (yes/no) [yes]?  no
        Testing for "/globaldevices" on "node2" ... done
    After cluster creation, i am seeing lofi device for /global, i am not seeing the slice which i used for /globaldevices is used.
    # mount | grep lofi
    /global/.devices/node@1 on /dev/lofi/127 read/write/setuid/devices/rstchown/intr/largefiles/logging/noquota/global/xattr/nodfratime/onerror=panic/dev=240007f on Wed Oct  9 07:30:23 2013
    /global/.devices/node@2 on /dev/lofi/126 read/write/setuid/devices/rstchown/intr/largefiles/logging/noquota/global/xattr/nodfratime/onerror=panic/dev=240007e on Wed Oct  9 07:30:23 2013
    # mount | grep globaldevices
    /globaldevices on /dev/dsk/c0t0d0s3 read/write/setuid/devices/rstchown/intr/largefiles/logging/xattr/onerror=panic/dev=840083 on Wed Oct  9 07:30:07 2013
    # lofiadm
    Block Device             File
    /dev/lofi/126            /.globaldevices
    # du -h /.globaldevices
    1.0G   /.globaldevices
    Someone clarify me why the cluster used lofi? Since i have a dedicated slice for /globaldevice, why the cluster created lofi again ?
    Thanks & Regards,
    Shashi Kanth.

    Hi.
    According
    Planning the Oracle Solaris OS - Oracle Solaris Cluster Software Installation Guide
    In case you want have use /globaldevice as separated slice, you should:
    1.  Create UFS file systems on required device. You require at least 512 MB.
    2. Add record for this device to /etc/vfstab
    3.Mount /globaldevice.
    In this case cluster installation script will not create /globaldevice on lofi.
    Additional requirements:
    Planning the Global Devices, Device Groups, and Cluster File Systems - Oracle Solaris Cluster Software Installation Guid…
    You can use this procedure:
    Administering Device Groups - Oracle Solaris Cluster System Administration Guide
    for Migrate the Global-Devices Namespace From a lofi Device to a Dedicated Partition.
    Regards.

  • Backup - ASM vs regular cooked file system

    Use Oracle 11g on Linux.
    The disk system is ASM. For instance, the FRA is configured based on a ASM disk group +FRA (along withe multiplexed logs and control files).  This is one place for the backup and multiplexing.
    Now, I intend to place the multiplexed files also to a second location (disk). For this disk, I have two choices: 1) Use the ASM diskgroup 2) Use the regular datafile (/u01/oracle/oracdata/back).
    Good thing about the cooked file system ( I can think) is that I can see the location of the file by going to the file manager and locate the directory of the files, kind of transparent.
    For doing so, will it incur the opertion cost in the future? (As compared to the ASM diskgroup, though files somewhat hidden from the view, but Oracle will take care of "everything").
    So, any comment on the file system of the second disk? (Oracle ASM vs regular cooked file system).
    Thanks

    I suggest you continue using ASM and use the ACFS feature.
    From 11.2.0.3 I don't use FRA on ASM only, I'm using FRA under ASM/ACFS mount point.
    Oracle Automatic Storage Management Cluster File System (Oracle ACFS) is a multi-platform, scalable file system, and storage management technology that extends Oracle Automatic Storage Management (Oracle ASM) functionality to support customer files maintained outside of Oracle Database. Oracle ACFS supports many database and application files, including executables, database trace files, database alert logs, application reports, BFILEs, and configuration files. Other supported files are video, audio, text, images, engineering drawings, and other general-purpose application file data.
    Starting with Oracle Automatic Storage Management 11g Release 2 (11.2.0.3), Oracle ACFS supports RMAN backups (BACKUPSET file type), archive logs (ARCHIVELOG file type), and Data Pump dumpsets (DUMPSET file type).

  • Help! Corrupted file system....

    Hi all,
    One of the partitions on my external hard drive (Mac OS Extended Journaled) has a corrupted file system. This occurred right after I installed the latest NTFS-3G driver, which allows read/write of NTFS drives (http://macntfs-3g.blogspot.com/). The external HD was accessed via my Airport Extreme (so it was an "Air Drive"). When I connected it directly to my MBP and used Disk Utility to Verify/Repair, I got the following error messages:
    *Invalid node structure*
    *Invalid B-tree node size*
    *Volume check failed.*
    *Error: Filesystem verify or repair failed.*
    What is going on here and how can I fix it??? I should note that I've already uninstalled NTFS-3G but the problem persists. Also, it's not a physical problem with external HD, since the other two partitions on the disk appear fine.
    Any help would be much appreciated!

    It would have to have been a pretty big coincidence since it happened immediately afterward...but you're right, I have no way of knowing for sure. I've never had a hard drive do this; I've been a windows user until about a year ago. I thought the HFS+ file system was supposed to be better...Ironically, the good old FAT32 partition on the same drive is still going strong.
    Disk Warrior is a $99 purchase. Does anyone have any other suggestions for me to try before I plunk down the cash? BTW, Drive Genius 2 and also failed to repair it.

  • After brrestore: Couldn't open verify PSE file /oracle/ sid /LASVerify.pse

    After a brrestore on same server and <SID> each time that we run cleanup logs from DB13  we see:
    BR0801I BRCONNECT 7.00 (32)
    BR1301W Error message from likeywlib: likey_init: Couldn't open verify PSE file ("/oracle/<sid>/LASVerify.pse") for writing, errno = 13 (Permission denied).
    BR1302W Initialization of license key library likeywlib failed, return code 1
    BR1304W Checking SAP license failed at location BrLicCheck-104
    BR0602W No valid SAP license found - please contact SAP
    BR0805I Start of BRCONNECT processing: cdzkodpr.cln 2008-12-06 22.46.27
    BR0484I BRCONNECT log file: /oracle/<sid>/sapcheck/cdzkodpr.cln
    It is on a Linux SuSE X64 - Oracle 10.2.0.4 box
    Regards.
    Ganimede Dignan.

    > After a brrestore on same server and <SID> each time that we run cleanup logs from DB13  we see:
    >
    > BR0801I BRCONNECT 7.00 (32)
    > BR1301W Error message from likeywlib: likey_init: Couldn't open verify PSE file ("/oracle/<sid>/LASVerify.pse") for writing, errno = 13 (Permission denied).
    you <SID>adm user has no permissions to write this file.
    Markus

  • Decision on File system management in Oracle+SAP

    Hi All,
    In my production system we use to have /oracle/SID/sapdata1 and oracle/SID/sapdata2. Initially there was many datafiles assigned to the table sapce PSAPSR3, few as autoextend on and few as autoextend off. As per my understanding DB02 shows you the information just tablespace wise it will report AUTOEXTEND ON as soon as at least one of the datafiles has AUTOEXTEND ON. In PSAPSR3 all the datafile with autoextend ON are from SAPDATA1 which has only 50 GBs left. All the files as Autoextend OFF are from SAPDATA2 which has 900 GBs of sapce left.
    Now the question is :
    1.Do I need to request for additional space for SAPDATA1 as some of the tablespaces are at the edge of autoextend and that much space is not left in the FS(sapadat1) , then how will they extend? DB growth is 100GB per month.
    2.We usually were adding 10 GB of datafile in the tablespace with 30GB as autoextend.
    Can we add another datafile from sapdata2 this time with autoextend ON and the rest will be taken care automatically.
    Pleae suggest.
    Regards,
    VIcky

    Hi Vicky,
    As you have 100GB/month growth suggestion here would be
    1) Add 2 more mount points sapdata3 and sapdata4 with around 1 TB space.
       This is to distribute data across 4 data partitions for better performance
    2) As sapdata1 has datafiles with auto extend ON, you need to extend the file system to 500 GB atleast so that whenever data is written on datafiles under sapdata1, it will have space to grow using autoextend feature. Without sufficient disk space it may lead to space problem and transaction may result in dump.
    3) No need to change anything on sapdata2 as you already have 900GB free space
    Hope this helps.
    Regards,
    Deepak Kori

  • Need help with File system creation fro Oracle DB installation

    Hello,
    I am new to Solaris/Unix system landscape. I have a Sun enterprise 450 with 18GB hard drive. It has Solaris 9 on it and no other software at this time. I am planning on adding 2 more hard drives 18gb and 36gb to accommodate Oracle DB.
    Recently I went through the Solaris Intermediate Sys admin training, knows the basic stuff but not fully confident to carry out the task on my own.
    I would appreciate some one can help me with the sequence of steps that I need perform to
    1. recognize the new hard drives in the system,
    2. format,
    3. partition. What is the normal strategy for partitioning? My current thinking is to have 36+18gb drives as data drives. This is where I am little bit lost. Can I make a entire 36GB drive as 1 slice for data, I am not quite sure how this is done in the real life, need your help.
    4. creating the file system to store the database files.
    Any help would be appreciated.

    Hello,
    Here is the rough idea for HA from my experience.
    The important thing is that the binaries required to run SAP
    are to be accessible before and after switchover.
    In terms of this file system doesn't matter.
    But SAP may recommend certain filesystem on linux
    please refer to SAP installation guide.
    I always use reiserfs or ext3fs.
    For soft link I recommend you to refer SAP installation guide.
    In your configuration the files related to SCS and DB is the key.
    Again those files are to be accessible both from hostA and from hostB.
    Easiest way is to use share these files like NFS or other shared file system
    so that both nodes can access to these files.
    And let the clustering software do mount and unmount those directory.
    DB binaries, data and log are to be placed in shared storage subsystem.
    (ex. /oracle/*)
    SAP binaries, profiles and so on to be placed in shared storage as well.
    (ex. /sapmnt/*)
    You may want to place the binaries into local disk to make sure the binaries
    are always accessible on OS level, even in the connection to storage subsystem
    losts.
    In this case you have to sync the binaries on both nodes manually.
    Easiest way is just put on shared storage and mount them!
    Furthermore you can use sapcpe function to sync necessary binaries
    from /sapmnt to /usr/sap/<SID>.
    For your last question /sapmnt should be located in storage subsystem
    and not let the storage down!

  • How to add disk to disk group File System in oracle windows

    Hi all
    Please any body can help ... I need to know how can I add disk to disk group
    I have Oralce 11g Database RAC Setup with 2 nodes node1 and node2 , ASM not enabled , Windows OS 2003 , I have shared storage (G, H and O ) My system administrator add additional SAN Storage (R) to my setup, how can I add the new disk to disk group.
    Please help

    I have Oralce 11g Database RAC Setup with 2 nodes node1 and node2 , ASM not enabled , Windows OS 2003 , I have shared storage (G, H and O ) My system administrator add additional SAN Storage (R) to my setup, how can I add the new disk to disk group.If ASM is not enabled that mean, Database is running on normal file system?
    Hi thanks for you help.,,, But my system admnistrator already did thies steps,... I think my question was not clear enough
    I mean after I add the disk group from O.S side what shall I do from Oracle Side? Since From windows explorer I can see the new drive.If the volumes are ready, you can use ASMCA to configure diskgroups.

  • Uploaded Files stored in Oracle 10G database or in Unix File system

    Hey All,
    I am trying to understand best practices on storing uploaded files. Should you store within the database itself (this is the current method we are using by leveraging BLOB storage) or use a BFILE locator to use the files system storage (we have our DB's on UNIX) . . .or is there another method I should be entertaining? I have read arguments on both sides of this question. I wanted to see what answers forum readers could provide!! I understand there are quite a few factors but the situation I am in is as follows:
    1) Storing text and pdf documents.
    2) File sizes range from a few Kb to up to 15MB in size
    3) uploaded files can be deleted and updated / replaced quite frequently
    Right now we have an Oracle stored procedure that is uploading the files binary data into a BLOB column on our table. We have no real "performance" problems with this method but are entertaining the idea of using the UNIX file system for storage instead of the database.
    Thanks for the insight!!
    Anthony Roeder

    Anthony,
    First word you must learn here in this forum is RESPECT.
    If you require any further explanation, just say so.
    BLOB compared with BFILE
    Security:
    BFILEs are inherently insecure, as insecure as your operating system (OS).
    Features:
    BFILEs are not writable from typical database APIs whereas BLOBs are.
    One of the most important features is that BLOBs can participate in transactions and are recoverable. Not so for BFILEs.
    Performance:
    Roughly the same.
    Upping the size of your buffer cache can make a BIG improvement in BLOB performance.
    BLOBs can be configured to exist in Oracle's cache which should make repeated/multiple reads faster.
    Piece wise/non-sequential access of a BLOB is known to be faster than a that of a BFILE.
    Manageability:
    Only the BFILE locator is stored in an Oracle BACKUP. One needs to do a separate backup to save the OS file that the BFILE locator points to. The BLOB data is backed up along with the rest of the database data.
    Storage:
    The amount of table space required to store file data in a BLOB will be larger than that of the file itself due to LOB index which is the reason for better BLOB performance for piece wise random access of the BLOB value.

Maybe you are looking for

  • My MacBook air's power source is damaged

    My MacBook air is completely discharged and the power source isn't working, what do I do?? I have to redefine my SMC but my mac wont connect to the energy...please help!! Thanks

  • Connecting 3G iPod to firewire without syncing

    hi I want to keep the iPod connected to the firewire port to keep it charged and play while connected, but not connect to iTunes. Right now if I connect it, even with iTunes set to not launch, it will say do not disconnect on the ipod. After ejecting

  • Avoid Highways in Maps

    Why is there no way to avoid highways when getting directions in Maps? Sometimes I'm not always looking for the quickest way there, but instead the safest. Example: A month ago I was in a town (on business) I was not familiar with and the weather tur

  • Keyword Functionality

    In Adobe Elements you could find a keyword and only that keyword. For example, assume image 1 had a keyword of baby and image 2 had a keywords of baby and mom. There was a way of searching for only baby without anything else...you'd get image 1 but n

  • Unknown error -9813;  no downloading allowed!

    This is getting very tiresome. I rarely use iTunes-and I use the store even less. But I found a song I wanted to download and went and opened the ITMS. when I click on a song, and then try to log in, I get an "unknown error -9813-make sure you have a