Changing the AU_size parameter on ASM 11gR2

Hi Experts,
Is it possible to change the AU_Size parmeter of existing Diskgroup on ASM 11gR2?
Thanks
Vivek

872239 wrote:
Hi Experts,
Is it possible to change the AU_Size parmeter of existing Diskgroup on ASM 11gR2?
Thanks
VivekI Think no,
"This attribute can only be set when creating a disk group"
http://download.oracle.com/docs/cd/E11882_01/server.112/e16102/asmdiskgrps.htm#CHDIABGJ

Similar Messages

  • Change the input parameter in Check Status screen

    Hi,
    I have a requirment to change the input parameter option in the check status screen. Currently when we search the SC using the date and staus from the extended search it picks the SC created date and displays the SC, my requirement is to make the date as the approved date insted of SC created date with the status as aprpoved.
    Please suggest if this is possible with the help of any Badi.
    Regards
    GGL

    I managed to find the solution myself. If anyone is interested, just follow those steps here:
    http://apple.stackexchange.com/questions/44913/make-a-custom-keyboard-layout-the -system-default-even-for-the-login-screen
    (terminal skills required tho)

  • Using Field-Symbols in a user exit to change the importing parameter

    Please don't ask why but I need to use a user exit, changing the importing parameter.  I decided that I could do this using field-symbols.
    Please excuse my ignorance but I have never used field symbols for something such as this.
    Here is my goal:  Loop through an internal table (im_document-item).  When I find what I need I want to make a change to this line (not so hard if I am looping into a field symbol) and also append a line to the end of the table im_document-item.
    I have the following so far:
      DATA: wa_item TYPE accit,
            wa_item_out type ACCIT_SUB.
    FIELD-SYMBOLS: <document> type acc_document,
                   <accit> TYPE ACCIT.
    LOOP AT im_document-item ASSIGNING <accit> where saknr = '0000211000'.
    * Modify the curent line
    wa_item = <accit>
    * Append a new line into table im_document-item.
    ENDLOOP.
    How can I use field-symbols to append a line to this table?  Please note that the table in question (im_document-item) is an importing only parameter.
    Regards,
    Davis

    that will allow me to append an initial line with <accit> pointing to the line. Therefore I just have to modify <accit> and the new line will then have my changes?
    Yep, that is exactly it.    So after the APPEND statement, simply fill the fields of the <accit>.
    append initial line to im_document-item ASSIGNING <accit>.
    <accit>-field1 = 'Blah'.
    <accit>-field2 = 'Blah'.
    Regards,
    Rich Heilman

  • How do i change the enable_row_shipping parameter in oracle11g?

    Here is my Oracle version..
    Connected to:
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    With the Partitioning and Real Application Testing options
    SQL> select * from v$version;
    BANNER
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    SQL>
    I do want to change the below parameter value from TRUE to FASE. How do i change this value? since this is hidden parameter.
    enablerow_shipping
    Regards

    alter system set "_enable_row_shipping"=false;maybe with scope=spfile, test it.
    why you would set it?

  • Changing the Application Parameter in the mass copied iviews

    Hi,
    I have copied the standard package iviews,pages,roles to a custom folder.Now I want to change the "Application Parameter" of the all copied iviews.Is it possible to do the mass change of a single parameter in all the copied iviews?
    If possible,please suggest how to achieve the same.
    Thanks,
    Rajani

    Hi,
    Yes, you can use the Multiple Property Replacement feature : [Multiple Property Replacement|http://help.sap.com/saphelp_nw70ehp1/helpdata/en/0f/764b87dfb948fcb13fd7695e157892/frameset.htm].
    Regards,
    Pierre

  • How to change the codebase_lookup Parameter in Oracle's Applet?

    Hi,
    We are using Oracle 10.1.2.3.0 AS, and we have some performance issues when running the applet. I turned on the Java trace and I saw that every time the user moves the cursor from one item to another, the application sends a request to the server, here is an example of that request:
    network: Connecting http://prodserver/forms/lservlet;jsessionid=59cf1d233d52f219811fb1e7321d40b64b882bde5e6b1ac384bc0e7f0802fdd1.e34Ra38Pb3uLbi0QaxaNahaKb310n6jAmljGr5XDqQLvpAe with proxy=DIRECT
    Looking on the WEB I found out that this kind of requests can be disabled by changing Applet's codebase_lookup property. (http://java.sun.com/javase/6/docs/technotes/guides/plugin/developer_guide/special_attributes.html)
    I've changed the formsweb.cfg and basejini.htm in order to add this parameter, but it didn't work.
    Does anybody know where can I change the value of this parameter?
    Thanks in Advance.

    You can try passing the parameter in the HTML template file ... for example in the $ORACLE_HOME/forms/server/basejpi.htm
    i.e.
    <PARAM NAME="TYPE" VALUE="%jpi_mimetype%">
    <PARAM NAME="CODEBASE" VALUE="%codebase%">
    <PARAM NAME="CODE" VALUE="oracle.forms.engine.Main" >
    <PARAM NAME="ARCHIVE" VALUE="%archive%" >
    <PARAM name="codebase_lookup" value="false">
    I have never done it myself so I do not know if it would be recognized though.

  • How come I can not change the initialization parameter

    show parameters audit_trail
    NAME TYPE VALUE
    audit_trail string NONE
    alter system set audit_trail = true
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modified
    I am using windows XP professional, Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    sqlplus sheet
    How to change the parameter like this?
    Edited by: user8117130 on May 4, 2009 9:23 AM

    user8117130 wrote:
    show parameters audit_trail
    NAME TYPE VALUE
    audit_trail string NONE
    alter system set audit_trail = true
    ERROR at line 1:
    ORA-02095: specified initialization parameter cannot be modified
    I am using windows XP professional, Oracle9i Enterprise Edition Release 9.2.0.1.0 - Production
    sqlplus sheet
    How to change the parameter like this?
    Edited by: user8117130 on May 4, 2009 9:23 AMHi,
    This is a static parameter which means you can't change it when the db is running. If you are using an spfile, you need to change the query as ,
    alter system set audit_trail=true scope=spfileAnd then give a bounce to your db. If you are usnig a parameter file, than change in that and restart.
    http://download.oracle.com/docs/cd/B10501_01/server.920/a96536/ch112.htm#REFRN10006
    HTH
    Aman....

  • PO with release stratergy - change the print parameter setting

    Hi all,
    In case of PO with release startetgy, when the PO is released by the last approver and after saving, the print should automatically come in the place of the creator.
    for ex: PO creator is A. His default printer is  A1
              PO approver   B. His default printer is B1.
    once B approves the PO, the print should come in A1.
    Kindly help me in fixing the issue.

    Hi,
    Thanks for your input. A little change in the logic.
    Our PO will have two output type.
    A - PO creator - print parameter p1
    B - PO approver - print parameter p2
    CASE 1:
    if output type1 is choosed, when B approves printout should come from p2.
    Case 2:
    if output type 2 is choosed, when B approves printout should come from p1.
    Note: No work flow is involved and print program cannot be changed. Can use user exit.

  • How change the Date parameter based on server date

    Hi,
    We are using Query browser to connect to Bex Query.In BEx Query we have a date prompt which is mandatory.So by using Query prompt selector the dashboard has been created.But in our scenario the date has to be picked up from current system date/Server date and it has to change automatically when ever the dashboard has been opened.How to achieve this.
    Regards,
    Venkat

    Using the query prompt selector, the date will be listed in the drop down box. Here you can see only the date available in the server. Use the "Insert selected items" option you can pass the current date using =today() function.
    But the pain behind using the query prompt selector on date you have scroll a lot to search for a specific date, on this case i would suggest you to take the calender component to trigger the query. You have the same flexibility to pass the current date in this component.

  • Change the way parametes are chosen in webi

    Hi experts,
    Weare having the following problem, in our QAS server, when we right click on a crystal report, select program and them parameters, we get the following screen
    [QAS Parameters|http://a6.sphotos.ak.fbcdn.net/hphotos-ak-ash4/395199_10150539385573428_516188427_10793487_1411181440_n.jpg]
    But in our pudctuon server we get this one.
    [Production parameters|http://a4.sphotos.ak.fbcdn.net/hphotos-ak-ash4/392667_10150539387908428_516188427_10793492_829489549_n.jpg]
    And we have no clue on how to change that..
    We need the Production server to be like the QAS, and i checked they are both on the same version.
    Any ideas??
    thanks in advance
    Leandro

    Moved to WEBI folder

  • Preserving a field's value on changing the field access parameter?

    I have a form that has a number of fields that are set to "protected" and have calculation scripts on them. If the user selects a specific radio button option elsewhere, the form sets the .access parameter to "open" and disables the calculation so that the user can enter whatever they want into those fields. The problem arises when the user imports XML data via Acrobat. The radio button choice is made (since it is bound to an element in the schema), but when the form changes the access parameter of the fields to "open", it fires the calculate event on the fields and we lose the value assigned to those fields from the imported XML.
    Is there any way to preserve the fields value when it changes from "protected" to "open"? Here is an example PDF w/ XSD.
    The more I dig into this the more I think this might be an issue with calculate.override not disabling the calculations on a field, even when it is set to "open" - at least until the user manually edits that field.

    Ok, worked out a solution. It's specific to my application, but maybe someone else will get something out of it. What I did is moved the calculation script from the field I am changing the access parameter of (call it "Field A") to the fields that feed into that field (call them "Field B" and "Field C"). Now, when the user triggers the exit events on B and C, each one fires a script that updates the value of A. For my application, this works only because B and C are hidden from the use if they toggle the radio button allowing them to manually enter A.
    Basically, instead of A pulling values from B and C to calculate it's value, B and C check each other and push values to A.

  • How to change the domain name

    Our company was bought in an acquisition and for a long time we kept out domain and firewall. Now, we have to move the servers physically and on the new domain. All Oracle servers have been installed with the service of ORANAME.usdv.sdv.com and the TNS names use the same Service tag. The databases created with dbca also get this service extension on install.
    I did not find a lot to read about a domain change in Oracle. Looking for an idea on what complications I may expect and how to actually perform the domain change, tips and tricks, some materials to read, etc.
    It looks that I have to change the tnsnames.ora on all clients,but is this going to be enough? Do I need to redo netca on clients and servers?
    Thanks a lot, mj

    Thanks a lot. I'm sorry I did not specify that in my initial post - this was actually what I read but could not find anything more on that...
    I have a couple of questions like:
    When do I have to alter the database to change tha name - before or after to join to the new domain?
    Also, is the statement "ALTER DATABASE RENAME GLOBAL_NAME TO <dbname.new.domain>" the only thing I need to do? It looks that this command never changes the v$parameter value. Do I need to change it and how to do that?
    The doc said :"DB_DOMAIN has no effect on the global database name" but it this true?
    Also, is this valid for both 10.2.0.2 and above and 9.2.0.7?
    Thanks a lot,mj
    Message was edited by:
    user494147

  • 1503653.1 - should change the comptability to 11.0.0 from 10.2.0.5 before manuelly upgrade?

    hi All,
    i am trying to follow through the steps.
    I will be porting the data from the old box into a new box ( windows 12.1.0.2.0)
    I run the pre- tools script -> preupgrd.sql
    it give me error or some warning to fix before doing the upgrade.
    My question is , before i port over the data via a cold backup, should i first change the compatability to 11.0.0 from 10.2.0.5.0 (source db) then do a cold backup then port over the data to the new box then do the upgrade steps?
    of course i can change the init.ora process to 300. As for the rest of the warning, i am not too sure is it necessary for me to do it since i will moving to a new box. Warning likes, EM database control, etc
                             [Update parameters]
             [Update Oracle Database 10.2.0.5.0 init.ora or spfile]
    --> If Target Oracle is 32-bit, refer here for Update Parameters:
    WARNING: --> "processes" needs to be increased to at least 300
    --> If Target Oracle is 64-bit, refer here for Update Parameters:
    WARNING: --> "sga_target" needs to be increased to at least 624951296
    WARNING: --> "processes" needs to be increased to at least 300
                              [Renamed Parameters]
                         [No Renamed Parameters in use]
                        [Obsolete/Deprecated Parameters]
    --> background_dump_dest         11.1       DESUPPORTED  replaced by  "diagnostic_dest"
    --> user_dump_dest               11.1       DESUPPORTED  replaced by  "diagnostic_dest"
            [Changes required in Oracle Database init.ora or spfile]
                                [Component List]
    --> Oracle Catalog Views                   [upgrade]  VALID    
    --> Oracle Packages and Types              [upgrade]  VALID    
    --> JServer JAVA Virtual Machine           [upgrade]  VALID    
    --> Oracle XDK for Java                    [upgrade]  VALID    
    --> Oracle Workspace Manager               [upgrade]  VALID    
    --> OLAP Analytic Workspace                [upgrade]  VALID    
    --> Oracle Enterprise Manager Repository   [upgrade]  VALID    
    --> Oracle Text                            [upgrade]  VALID    
    --> Oracle XML Database                    [upgrade]  VALID    
    --> Oracle Java Packages                   [upgrade]  VALID    
    --> Oracle Multimedia                      [upgrade]  VALID    
    --> Oracle Spatial                         [upgrade]  VALID    
    --> Data Mining                            [upgrade]  VALID    
    --> Expression Filter                      [upgrade]  VALID    
    --> Rule Manager                           [upgrade]  VALID    
    --> Oracle OLAP API                        [upgrade]  VALID    
                                  [Tablespaces]
    --> SYSTEM tablespace is adequate for the upgrade.
         minimum required size: 1122 MB
    --> UNDOTBS1 tablespace is adequate for the upgrade.
         minimum required size: 400 MB
    --> SYSAUX tablespace is adequate for the upgrade.
         minimum required size: 619 MB
    --> TEMP tablespace is adequate for the upgrade.
         minimum required size: 60 MB
    --> EXAMPLE tablespace is adequate for the upgrade.
         minimum required size: 78 MB
                          [No adjustments recommended]
                              [Pre-Upgrade Checks]
    WARNING: --> Process Count may be too low
         Database has a maximum process count of 150 which is lower than the
         default value of 300 for this release.
         You should update your processes value prior to the upgrade
         to a value of at least 300.
         For example:
            ALTER SYSTEM SET PROCESSES=300 SCOPE=SPFILE
         or update your init.ora file.
    ERROR: --> Compatible set too low
         "compatible" currently set at 10.2.0.5.0 and must
         be set to at least 11.0.0 prior to upgrading the database.
         Do not make this change until you are ready to upgrade
         because a downgrade back to 10.2 is not possible once compatible
         has been raised.
         Update your init.ora or spfile to make this change.
    WARNING: --> Enterprise Manager Database Control repository found in the database
         In Oracle Database 12c, Database Control is removed during
         the upgrade. To save time during the Upgrade, this action
         can be done prior to upgrading using the following steps after
         copying rdbms/admin/emremove.sql from the new Oracle home
       - Stop EM Database Control:
        $> emctl stop dbconsole
       - Connect to the Database using the SYS account AS SYSDBA:
       SET ECHO ON;
       SET SERVEROUTPUT ON;
       @emremove.sql
         Without the set echo and serveroutput commands you will not
         be able to follow the progress of the script.
    WARNING: --> "DMSYS" schema exists in the database
         The DMSYS schema (Oracle Data Mining) will be removed
         from the database during the database upgrade.
         All data in DMSYS will be preserved under the SYS schema.
         Refer to the Oracle Data Mining User's Guide for details.
    WARNING: --> Database contains INVALID objects prior to upgrade
         The list of invalid SYS/SYSTEM objects was written to
         registry$sys_inv_objs.
         The list of non-SYS/SYSTEM objects was written to
         registry$nonsys_inv_objs unless there were over 5000.
         Use utluiobj.sql after the upgrade to identify any new invalid
         objects due to the upgrade.
    INFORMATION: --> OLAP Catalog(AMD) exists in database
         Starting with Oracle Database 12c, OLAP Catalog component is desupported.
         If you are not using the OLAP Catalog component and want
         to remove it, then execute the
         ORACLE_HOME/olap/admin/catnoamd.sql script before or
         after the upgrade.
    INFORMATION: --> Older Timezone in use
         Database is using a time zone file older than version 18.
         After the upgrade, it is recommended that DBMS_DST package
         be used to upgrade the 10.2.0.5.0 database time zone version
         to the latest version which comes with the new release.
         Please refer to My Oracle Support note number 1509653.1 for details.
    WARNING: --> Existing schemas with network ACLs exist
         Database contains schemas with objects dependent on network packages.
         Refer to the Upgrade Guide for instructions to configure Network ACLs.
    INFORMATION: --> There are existing Oracle components that will NOT be
         upgraded by the database upgrade script.  Typically, such components
         have their own upgrade scripts, are deprecated, or obsolete.
         Those components are:  OLAP Catalog

    Not something I've done before but it seems that setting the parameter to 11.0.0 is a pre-requisite.
    http://docs.oracle.com/database/121/UPGRD/intro.htm#BHCJHGFA
    A full backup isn't neccessary specifically for this upgrade.  Just port your data over, change the compatibile parameter on the spfile/pfile on your target upgrade host and upgrade away.
    Your source will be your backup so I would be inclined not to change things on there.
    You can ignore some of the warning like EM dbcontrol as it states you can do it manually prior to the upgrade to save time, otherwise it will be done as part of the upgrade process anyway.
    Other warnings like. OLAP and the timezone file (timezone is a recommendation) you will need to pay attention to and action, as well as the network ACL warning:
    http://docs.oracle.com/database/121/UPGRD/preup.htm#BABEDAFB
    http://docs.oracle.com/database/121/UPGRD/preup.htm#BABJGCIC

  • How to change the default login page

    Hi All,
    I got an issue with the login page. I want to display the Chinses as default, but now it's engish. I have changed the ICX: Language to Chinese at the site level, but it seems didn't take effect.
    And the parameter s_base_lang is still US in the $CONTEXT_FILE.
    grep s_base_lang $CONTEXT_FILE
    <base_lang oa_var="s_base_lang">US</base_lang>
    How can we resolve this issue? Just change the s_base_lang parameter and take adconfig? Please advise.
    Thanks,
    Kevin
    Edited by: Kevin on 2012-9-23 下午4:37

    I got an issue with the login page. I want to display the Chinses as default, but now it's engish. I have changed the ICX: Language to Chinese at the site level, but it seems didn't take effect.Did you bounce Apache (or the application services)?
    And the parameter s_base_lang is still US in the $CONTEXT_FILE.
    grep s_base_lang $CONTEXT_FILE
    <base_lang oa_var="s_base_lang">US</base_lang>
    What was this value before running AutoConfig?
    Autoconfig FAQ [ID 218089.1] -- 16. Which files / profile options get changed when I run AutoConfig?
    How can we resolve this issue? Just change the s_base_lang parameter and take adconfig? Please advise.Login the application > Preferences > Set "Default Application Language" to "Chinese".
    Thanks,
    Hussein

  • Changing the Database Name

    Hi Gurus
    I am using oracle 10g on Windows platform. The issue is I need to change my database name. When i gone through the Oracle docs I found there is an utility called 'DBNEWID' . But not getting a clear cut idea. Since my DB is So critical anybody please tell me the exact steps to change the DB-Name.
    Thanks & Cheers
    Antony

    Changing Only the Database Name
    C:\>SQLPLUS/NOLOG
    SQL*Plus: Release 10.1.0.2.0 - Production on Tue Aug 22 10:54:38 2006
    Copyright (c) 1982, 2004, Oracle. All rights reserved.
    SQL> CONN / AS SYSDBA
    Connected.
    SQL> SELECT DBID,NAME FROM V$DATABASE;
    DBID NAME
    1230404613 DB01
    SQL> SHUTDOWN IMMEDIATE;
    Database closed.
    Database dismounted.
    ORACLE instance shut down.
    Must be : Take Whole Database Backup (Oracle Recommended)
    Otherwise u lost ur database.
    SQL> STARTUP MOUNT;
    ORACLE instance started.
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145488364 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 524288 bytes
    Database mounted.
    --Go Command Prompt
    DBNEWID UTILITY >>>NID ( OS Path : d:\oracle\product\10.1.0\db_1\bin\nid)
    C:\>SET ORACLE_SID=DB01
    C:\>NID TARGET=SYS/ORACLE@DB01 DBNAME=ORADB01 SETNAME=YES
    DBNEWID: Release 10.1.0.2.0 - Production
    Copyright (c) 2001, 2004, Oracle. All rights reserved.
    Connected to database DB01 (DBID=1230404613)
    Connected to server version 10.1.0
    Control Files in database:
    D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL01.CTL
    D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL02.CTL
    D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL03.CTL
    Change database name of database DB01 to ORADB01? (Y/[N]) => Y
    Proceeding with operation
    Changing database name from DB01 to ORADB01
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL01.CTL - modified
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL02.CTL - modified
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL03.CTL - modified
    Datafile D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\SYSTEM01.DBF - wrote new name
    Datafile D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\UNDOTBS01.DBF - wrote new nam
    e
    Datafile D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\SYSAUX01.DBF - wrote new name
    Datafile D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\USERS01.DBF - wrote new name
    Datafile D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\TEMP01.DBF - wrote new name
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL01.CTL - wrote new
    name
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL02.CTL - wrote new
    name
    Control File D:\ORACLE\PRODUCT\10.1.0\ORADATA\DB01\CONTROL03.CTL - wrote new
    name
    Instance shut down
    Database name changed to ORADB01.
    Modify parameter file and generate a new password file before restarting.
    Succesfully changed database name.
    DBNEWID - Completed succesfully.
    Set the DB_NAME initialization parameter in the initialization parameter file (PFILE) to the new database name.
    Note:
    The DBNEWID utility does not change the server parameter file (SPFILE). Therefore, if you use SPFILE to start your Oracle database, you must re-create the initialization parameter file from the server parameter file, remove the server parameter file, change the DB_NAME in the initialization parameter file, and then re-create the server parameter file.
    ---Create New Password File
    cmd>orapwd file=d:\oracle\product\10.1.0\db_1\database\pwddb01.ora password=oracle entries=5
    SQL> STARTUP PFILE=D:\Oracle\product\10.1.0\Db_1\database\initdb01.ora
    ORACLE instance started.
    Total System Global Area 171966464 bytes
    Fixed Size 787988 bytes
    Variable Size 145488364 bytes
    Database Buffers 25165824 bytes
    Redo Buffers 524288 bytes
    Database mounted.
    Database opened.
    SQL> select dbid,name from v$database;
    DBID NAME
    1230404613 ORADB01
    Note:
    After Change DB Name Take Whole Database bkp.
    Note: If i am missing some step or write wrong step plz. correct me.
    Before doing this refer documentation.
    http://download-uk.oracle.com/docs/cd/B19306_01/server.102/b14215/dbnewid.htm
    thanx
    Message was edited by:
    user526020
    null

Maybe you are looking for