In Oracle Linux 6 update 3, a question about Language

Hi, I'm operating Oracle Linux 6 update 3.
I have some question.
After it is booting, We can select various Languages in fisrt login display. So then does it(Oracle Linux 6 update 3 vesrion) support all Languages without installing a Language Packs?
thanks for reading this contens.
If you know about this, plz...inform this.

leave_for wrote:
Hi, I'm operating Oracle Linux 6 update 3.
I have some question.
After it is booting, We can select various Languages in fisrt login display. So then does it(Oracle Linux 6 update 3 vesrion) support all Languages without installing a Language Packs?
thanks for reading this contens.
If you know about this, plz...inform this.At least if you select "desktop" during installation, then the answer is yes. But you have to run the ibus program, log out then log in to complete the process. You only need to run it once.

Similar Messages

  • I have questions about language translator (Bing translator)

    hi, I have questions about language translator. few days ago, I use Bing translator. But, Some different results are displayed,, I did want to read  japan's news. But translator's results was different news, example is game, lee sun sin, and
    so on,, But, sometime,,, correct results were displayed,, technical problem?? or network problem?? or hacking? If you want to see problem result, I give you a picture of incorrect problem 

    Hi,
    This forum is discuss and ask questions about the C# programming language, IDE, libraries, samples, and tools. I am afraid this issue is out of topic.
    Please repost this issue to Machine Translation and Language Tools      >  
    Microsoft Translator User Forum (Including Bing Translator) forum.
    Now I will move your thread to "off-topic" forum. Thanks for your understanding.
    Best regards,
    Kristin
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • AIR auto update error, and question about POST parameters

    Hello,
    I'm getting a Download Failed error in the AIR autoupdating process;
    There was an error downloading the update. Error# 16822
    I recall this working once, the very first time that I tried it.
    My app.xml file contains this line:
        <version>12</version>
    and my update.xml file contains:
    <update xmlns="http://ns.adobe.com/air/framework/update/description/1.0">
      <version>12</version>
      <url>http:/players.biemedia.com/ooyala/Composer/Composer.air</url>
      <description>12 - Bug fixes and prepopulating defaults for player creation screen</description>
    </update>
    Pasting the URL into a browser works.
    However, this stuffresides on cloudfront.  in the past i have noticed that if something tries to send post parameters along with the request, cloudfront will deny the request.  Is it possible that the AIR app is sending POST parameters when hitting the download URL, and could this behavior be new in the last 6 months or so?
    Any other ideas?
    Thanks,
    Gerry

    Just Got The Solution for Error 16811 &  16816
    Note Following things to avoide update error
    No 1.>
    You xml schema for update descriptor.xml in  server should look similar to this
    <?xml version="1.0" encoding="utf-8"?>
    <update xmlns="http://ns.adobe.com/air/framework/update/description/2.5">
      <versionNumber>2.0</versionNumber>
      <url>http://localhost/SerialHunter/SerialHunter.air</url>
      <description><![CDATA[
    SerialHunter Version 2.0 by Rajendra Khope
    This new version includes:
        * AutoUpdate
        * Enhaced UI functions
        * Ability to add providers       
      ]]></description>
    </update>
    Note xmlns="http://ns.adobe.com/air/framework/update/description/2.5"
    and versionNumber instead of version
    Also make similar changes in appxml version field (in Burrito its by default versionNumber )
    No 2>
    if u are using code to display veesion number make sure it should look like:
    var appXML:XML = NativeApplication.nativeApplication.applicationDescriptor;
    var ns:Namespace = appXML.namespace();
    pnlMain.title=appXML.ns::name+" v "+appXML.ns::versionNumber
    Thats it...!
    Rajendra Khope
    bkrajendra at gmail dot com

  • Re-post : General Question about Language - Urgent Advice Needed

    IS IT POSSIBLE TO AVOID COMPLETELLY THE DISPLAY/USAGE OF ENGLISH IN PORTAL?
    WE INSTALLED LANGUAGE SPANISH (langinst.cmd) AND OUR CONTENT AREAS HAVE DEFAULT LANGUAGE "SPANISH"(NO ENGLISH TRANSLATION) .
    OUR PAGES/NAVIGATION BARS/STYLES/ETC... WERE CREATED BEING CONNECTED TO THE PORTAL IN SPANISH.
    WE DON'T WANT TO SHOW THE "LANGUAGE" PORTLET FOR USERS TO CHANGE BETWEEN SPANISH AND ENGLISH AND WE DON'T WANT THE PORTAL TO DISPLAY IN ENGLISH IF THE BROWSER SETTING IS ENGLISH.
    I READ SOMEWERE THAT IT IS NOT POSSIBLE TO "UNINSTALL" A LANGUAGE, THEREFORE I ASSUME WE CANNOT ELIMINATE THE ENGLISH LANGUAGE.
    CAN WE CONFIGURE SOMEHOW "SPANISH" AS A DEFAULT AND "UNIQUE"LANGUAGE SO ALWAYS THE PORTAL DISPLAYS IN SPANISH ??
    I HAVE INSTALLED LATEST VERSION 3.0.9.
    ANY IDEAS/SUGGESTIONS WILL BE MORE THAN WELLCOME!
    REGARDS
    null

    Hi Maria,
    One way of using Spanish as the default language is to load the following code in your Portal schema:
    set def off
    /* @Copyright (c) 1999, Oracle Corporation. All rights reserved. */
    create or replace procedure home
    -- create the synonyms for wwpob_page.show
    as
    l_pageid number;
    l_url varchar2(32767);
    function is_language_set
    p_http_language in varchar2 default null,
    p_nls_language in varchar2 default null,
    p_nls_territory in varchar2 default null,
    p_requested_url in varchar2
    return boolean
    is
    l_cookie owa_cookie.cookie;
    l_language varchar2(100) default null;
    begin
    begin
    begin
    l_cookie := owa_cookie.get(wwctx_sso.PERSISTENT_COOKIE);
    exception
    when others then
    l_language := null;
    raise wwctx_sso.NOT_HTTP_SESSION_EXCEPTION;
    end;
    l_language := lower(l_cookie.vals(1));
    exception
    when others then
    l_language := null;
    end;
    if l_language is null then
    wwctx_app_language.set_language
    p_http_language => p_http_language,
    p_nls_language => p_nls_language,
    p_nls_territory => p_nls_territory,
    p_requested_url => p_requested_url
    return false;
    end if;
    return true;
    end is_language_set;
    begin
    -- Mobile support
    if wwpob_api_mobile.is_mobile_request
    then
    l_pageid := wwpob_api_mobile.get_defaultmobilepage;
    else
    l_pageid := wwpob_api_mobile.get_defaultmobilepage;
    else
    l_pageid := wwpob_api_page.get_defaultpage;
    end if;
    l_url := wwpob_page_util.get_page_url(p_pageid => l_pageid);
    if is_language_set('es', 'e', 'SPAIN', l_url) then
    owa_util.redirect_url(l_url);
    end if;
    exception
    when others then
    wwerr_api_error_ui.show_html;
    end;
    show errors procedure home;
    This script looks for the language in the NLS_LANGUAGE cookie. It this cookie does not exist then the language defaults to Spanish because of the code is_language_set('es', 'e', 'SPAIN', l_url). Please make sure to delete the NLS_LANGUAGE cookie, if it exists.
    Please note that this code will work for 3.0.9. In case you want to implement something similar to this on 3.0.8, the code containing the mobile support has to be removed. You can contact me, should you have any questions.

  • Just a question about Languages.

    Hi all!
    I've got just a question: I'm italian, but in the italian site there's no updater for my n73.
    The problem is that now I don't know if, installing the english one, i'll be able to change the language.
    Can you tell me it, pleeeease??

    I think I heard somewhere that some software can be
    switched to English but some can't, but where can I
    find that kind of information?
    Basically all Apple software (except OS 9 and AppleWorks) has multiple localizations which always include Japanese and English, and these are easily switched via preferences settings. I think MS and Adobe software often only comes in one language at a time, but you really must check with them, or the outfit selling the software, to find out the situation with a particular app.

  • I have question about language

    hi i have a somthing to say that in our country we want to add our language to apple products so if you can do this we will be honerd to accept that descion

    Kurd IPhone Payaa wrote:
    hi i have a somthing to say that in our country we want to add our language to apple products 
    If you don't want to wait for Apple and have people with programming skills, you can add languages yourself:
    https://developer.apple.com/internationalization/

  • Diff between oracle linux and oracle enterprise linux?

    hi all,
    i am new to this flavor of Linux. I know oracle linux has red hat source, but i am confused about the difference betweek oracle linux which comes in versions 4 (upto update 8) and 5 (latest update being 5).
    i need to install oracle enterprise linux at a client place, so i gota know the difference.
    Should i be installing oracle Linux first and then run the rpm of "Unbreakable Enterprise Kernel"? or is the "Unbreakable Enterprise Kernel" only for customers who require this kernal on oracle linux update 5 x86_64?
    thanks

    waldorfm wrote:
    From what I understand Oracle Enterprise Linux (OEL) is a rebranded version of Red hat Enterprise Linux (RHEL).
    Oracle Linux (OL) is OEL plus Oracle optimization and custom, newer kernel. OL with Oracle "Unbreakable Enterprise Kernel" is available as x86_64 only and was introduced based on OEL or RHEL 5.5.
    You can install OEL 5.4 and easily upgrade to OEL 5.5, PMFJI, but can you point me to docs on how to make that upgrade? The timing of this msg on the forum was exquisite, as I started looking at that just today. I have an OEL 5.4 installation and would much rather upgrade to 5.5 than to have to rebuild from scratch.
    I did a yum install kernel with the 5.5 version of the public-yum-el5.repo. That went without a hitch and now reports "2.6.32-100.0.19.el5 #1" where I was 2.6.18-164.el5, but I also see
    [root@myserver ~]# uname -a
    Linux myserver 2.6.32-100.0.19.el5 #1 SMP Fri Sep 17 17:51:41 EDT 2010 x86_64 x86_64 x86_64 GNU/Linux
    [root@myserver ~]# cat /etc/enterprise-release
    Enterprise Linux Enterprise Linux Server release 5.4 (Carthage)
    [root@myserver ~]# cat /etc/redhat-release
    Red Hat Enterprise Linux Server release 5.4 (Tikanga)Bottom line is that I am charged with updating the kernel to a 2.6 version newer than 19 Sep, or applying a patch for the compat_alloc_user_space() function, and am not sure exactly how to proceed from here.
    if you like or start to install from version 5.5, and then install OL 5.5 by downloading the Oracle public yum repository and follow the instructions at http://public-yum.oracle.com

  • Oracle Linux 6.2 - hyper-threading

    Hello
    two simple questions, I hope 8^)
    if I installed OL 6.2 and then also upgraded to UEK R2, on X64 Intel server - both tasks done with hyper-threading enabled and then I want to disable hyper-threading after OS installation - do I need to make any OS system/parameter changes at Linux OS level or simply turn off H/T at hardware level and reboot the server ?
    is there general recommendation re when H/T is beneficial on Oracle Linux with UEK ?
    what about if I added more RAM to the same 64-bit Intel server? Any Linux OS changes required to get all RAM recognised by OS ?
    thanks!

    A recommendation does not mean the absolute best solution for every situation. There has been no information about any particular software deployment or even the particular CPU in question.
    I agree with you that enabling or disabling HTT in regard to achieving the best possible performance for a particular scenario is subject to testing. But, if someone asks me what is the recommendation about HTT in regard to Oracle UEK kernel, and possibly Oracle RDBMS, my suggestion is to use the default and leave HTT enabled. I'm not aware of any documentation that suggest to generally disable HTT when using Oracle. Saying "it depends" is scientifically correct, but not helpful.
    There are already plenty of discussions about HTT on the net. You can turn HTT off and experience a performance increase, but there is also a chance the performance was even better with HTT enabled in a properly configured system or application. There are cases were HTT apparently slows down performance, but drawing a conclusion about enabling or disabling HTT in regard to performance is often too simple due to many other factors that can interfere with the results.
    Dude the link you supplied referenced some old ibm information.Well, Hyper-Threading isn't a new feature.
    For what it's worth, check out http://en.wikipedia.org/wiki/Hyper-threading in particular "Drawback history".
    Or http://www.intel.com/support/processors/pentium4/sb/cs-017371.htm#1c which also links to more performance info.

  • Questions about Installing EBS R12

    Folks,
    Hello. I have downloaded E-Business Suit R12 from edelivery and want to instsll it in Oracle Linux 5.
    There are about 50 ZIP files in EBS R12 (Bxxxxx.zip and Vxxxxx.zip).
    I unzip the a few Bxxxxx.zip files. The contents in "B53824-01_3of4.zip_FILES" folder are:
    Start CD -> Disk1 -> rapidwiz ->rapidwiz
    Is "rapidwiz" the file to initialize the installation?
    Do I need to unzip all of the files in EBS R12 before install ?

    Hi,
    Is Base directory the place where EBS R12 will be installed?Yes.
    The directory before your apps, db and inst folder
    Ex:
    /u01/oracle/PROD/ ---> Base
    /u01/oracle/PROD/db --> Db folder
    /u01/oracle/PROD/apps -> Application folder
    How to choose the Base directory in the File System ?Depends on your mount points. But the basic is as shown above
    Do I need to create a new Top-level directory as Base directory ? Not needed. Rapidwiz will create it for ya
    But make sure you have correct permissions for oracle and applmgr.
    Thanks

  • Oracle Linux 6 update --- wirelees network card not working.

    Hello,
    The only problem I am having is with my wireless network card(built-in). Should I buy a new wireless card that can be used with Oracle Linux?
    Here is some info about my laptop:
    $ lspci -v | grep -i net
    04:00.0 Network controller: Realtek Semiconductor Co., Ltd. RTL8188CE 802.11b/g/n WiFi Adapter (rev 01)
    05:00.0 Ethernet controller: Realtek Semiconductor Co., Ltd. RTL8101E/RTL8102E PCI Express Fast Ethernet controller (rev 05)
    $ iwconfig
    lo no wireless extensions.
    eth0 no wireless extensions.
    virbr0 no wireless extensions.
    virbr0-nic no wireless extensions.
    $ lsmod
    Module Size Used by
    fuse 49340 0
    ipt_MASQUERADE 1780 3
    iptable_nat 4651 1
    nf_nat 16615 2 ipt_MASQUERADE,iptable_nat
    iptable_mangle 2603 0
    tun 9430 1
    bridge 39245 0
    stp 1503 1 bridge
    llc 4140 2 bridge,stp
    autofs4 18216 3
    sunrpc 168053 1
    cpufreq_ondemand 6844 4
    powernow_k8 12957 0
    ipt_REJECT 1621 4
    nf_conntrack_ipv4 7140 6 iptable_nat,nf_nat
    nf_defrag_ipv4 1033 1 nf_conntrack_ipv4
    iptable_filter 2123 1
    ip_tables 8337 3 iptable_nat,iptable_mangle,iptable_filter
    ip6t_REJECT 3390 2
    xt_tcpudp 1879 6
    nf_conntrack_ipv6 14880 2
    xt_state 1042 5
    nf_conntrack 59159 6 ipt_MASQUERADE,iptable_nat,nf_nat,nf_conntrack_ipv4,nf_conntrack_ipv6,xt_state
    ip6table_filter 2231 1
    ip6_tables 9601 1 ip6table_filter
    x_tables 12478 8 ipt_MASQUERADE,iptable_nat,ipt_REJECT,ip_tables,ip6t_REJECT,xt_tcpudp,xt_state,ip6_tables
    ipv6 225173 34 ip6t_REJECT,nf_conntrack_ipv6
    uinput 5260 0
    rfkill 13768 1
    i2c_piix4 10150 0
    joydev 7304 0
    microcode 11243 0
    uvcvideo 47429 0
    videodev 29537 1 uvcvideo
    v4l1_compat 11137 2 uvcvideo,videodev
    i2c_core 23454 2 i2c_piix4,videodev
    pcspkr 1386 0
    serio_raw 3380 0
    r8169 29689 0
    mii 3889 1 r8169
    snd_hda_codec_realtek 197227 1
    snd_hda_codec_atihdmi 2039 1
    snd_hda_intel 19505 2
    snd_hda_codec 62689 3 snd_hda_codec_realtek,snd_hda_codec_atihdmi,snd_hda_intel
    snd_hwdep 4852 1 snd_hda_codec
    snd_seq 43513 0
    snd_seq_device 5326 1 snd_seq
    snd_pcm 63799 2 snd_hda_intel,snd_hda_codec
    snd_timer 16064 2 snd_seq,snd_pcm
    snd 49098 12 snd_hda_codec_realtek,snd_hda_intel,snd_hda_codec,snd_hwdep,snd_seq,snd_seq_device,snd_pcm,snd_timer
    soundcore 5387 1 snd
    snd_page_alloc 6456 2 snd_hda_intel,snd_pcm
    usb_storage 35626 0
    ahci 28838 2
    pata_acpi 2307 0
    ata_generic 2403 0
    pata_atiixp 2852 0
    ohci_hcd 25812 0
    video 16346 0
    output 1723 1 video

    The actual problem seems to be that you are using the wrong Linux distribution for you Laptop. Enterprise Linux was not designed for consumer grade hardware. To further troubleshoot the problem you will need to check for relevant output of "dmesg", i.e. check if the firmware and driver that was loaded for the device. You should also check "lspci -v" w/o grep to see more detailed information for the device.
    Are you trying the latest Oracle Linux 6 update 2?
    What is your hardware?
    Beware that no Oracle database products are yet certified for EL6 yet, so you should better stick to Oracle Linux 5 update 7 instead.
    If the purpose of your installation is research and development I suggest to install Windows as your primary OS and run Oracle Linux inside Virtualbox. Check the following link: http://www.oracle.com/technetwork/community/developer-vm/index.html

  • Questions about free Download Oracle 10g, Database and Developer suite

    Hi everyone, got some questions..
    1) Is it possible to download free Oracle 10g and Developer suite? is a 30 day license trial or something like that?
    2) On windows systems which are the minimun requirements?, for example in a Pentium 4, 512Mb RAM, Windows XP Home edition is OK?
    3) Should I download Standard Edition? Personal?
    4) If I am trying to update my Oracle Developer knowledge (I was developer on 1999 with Oracle 7.3 and Developer 2000) what products do I have to install?? Oracle DB 10g, Developer Suite,Application Server too?, what else?
    Thanks guys!
    J.

    My answer you could find here Questions about free download Oracle 10g, Developer Suite

  • A question about Oracle 1g R2 Enterprise Edition license

    Dear all,
    I have a question about Oracle license and I would appreciate if you could kindly help me.
    I have installed an Oracle server (11g R2 Enterprise edition) on a linux virtual machine. The pc used for this purpose
    is my enterprise laptop (therefore a professional and not a personal Computer). However, I use the this Oracle Server
    only for learning purpose, that is, only for running the examples in my Oracle Press books (SQL, PL/SQL and some
    administration tasks) just for learning the stuff.
    There is absolutely no data related to my enterprise, stored or used on this server. Whenever I want to work with my
    enterprise data, I use the Oracle server of the enterprise which has of course the appropriate license. So as I said, I
    use this Enterprise server on the virtual machine only for running queries/programs in my Oracle Press books just for
    learning and I'm the sole person who uses this server (no remote connection for other users).
    The reason for which I needed to install this server on my PC was that our DBA couldn't provide a training environment
    for me with all required privileges and functionalities.
    Am I supposed to buy a license for this installed Enterprise server on my virtual machine?
    Thanks in advance,
    Dariyoosh

    drop.any wrote:
    From OTN license agreement:
    >
    LICENSE RIGHTS
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose. If you use the application you develop under this license for any internal data processing or for any commercial or production purposes, or you want to use the programs for any purpose other than as permitted under this agreement, you must obtain a production release version of the program by contacting us or an Oracle reseller to obtain the appropriate license. You acknowledge that we may not produce a production release version of the program and any development efforts undertaken by you are at your own risk. We may audit your use of the programs. Program documentation, if available, may accessed online at http://otn.oracle.com/docs.
    Ownership and Restrictions We retain all ownership and intellectual property rights in the programs. The programs may be installed on one computer only, and used by one person in the operating environment identified by us. You may make one copy of the programs for backup purposes.
    You may not:
    - use the programs for your own internal data processing or for any commercial or production purposes, or use the programs for any purpose except the development of your application;
    - use the application you develop with the programs for any internal data processing or commercial or production purposes without securing an appropriate license from us;
    - continue to develop your application after you have used it for any internal data processing, commercial or production purpose without securing an appropriate license from us, or an Oracle reseller;
    - remove or modify any program markings or any notice of our proprietary rights;
    - make the programs available in any manner to any third party;
    - use the programs to provide third party training;
    - assign this agreement or give or transfer the programs or an interest in them to another individual or entity; - cause or permit reverse engineering (unless required by law for interoperability), disassembly or decompilation of the programs;
    - disclose results of any program benchmark tests without our prior consent.
    >Hello again,
    Thank you both of you for your help. As it seems to me
    >
    We grant you a nonexclusive, nontransferable limited license to use the programs only for the purpose of developing, testing, prototyping and demonstrating your application, and not for any other purpose.
    >
    I think self training can be considered in this category, therefore I think there is no need to buy a license for that.
    Kind regards,
    Dariyoosh

  • Oracle Linux 5.5 updates?

    Lately it seems that the Oracle Linux 5.5 channel is very quiet, now that Oracle Linux 5.6 is out and getting updates. My question is whether there will be any updates to 5.5 in the future, or is it kind of frozen, and all new features/fixes will go into 5.6?

    user1175485 wrote:
    Lately it seems that the Oracle Linux 5.5 channel is very quiet, now that Oracle Linux 5.6 is out and getting updates. My question is whether there will be any updates to 5.5 in the future, or is it kind of frozen, and all new features/fixes will go into 5.6?That's how Enterprise Linux works. Once a new update comes out, the older update versions remain static. This means you can keep your servers on exactly the right version of each package you want. If you subscribe to the "latest" channel (available on ULN), then your system will automatically upgrade from Update to Update, i.e. it would've jumped from EL5U5 to EL5U6 automatically.

  • Several questions about oracle ASM in 11gR2.

    Hi, all.
    The db is 11.2.0.3 on a linux machine.
    I have several questions about oracle ASM functionality.
    1. V$ASM_DISKGROUP.ALLOCATION_UNIT_SIZE is the stripe size in bytes??
    2. V$ASM_DISK.DISK_NUMBER is unique to a physical disk??
    3. if the second question is the case,
    disk_number=0 (a physical disk) has 14 partition on it.
    And each partition belongs to several diskgroups.
    Is ths right??
    with q1 as (
         select /*+ use_hash(b,a) */
              disk_number,b.group_number,b.name,a.path,sum(os_mb) tot_size ,count(*) cnt
         from v$asm_disk a, v$asm_diskgroup b
         where a.group_number=b.group_number
         group by disk_number,b.group_number,b.name,a.path
         order by disk_number,b.group_number,b.name
    select disk_number,group_number,name,path,tot_size,
           sum(tot_size) over (partition by disk_number) disk_size,
           sum(cnt) over (partition by disk_number) parition_cnt_per_disk
      from q1
      order by q1.disk_number,group_number
    DISK_NUMBER     GROUP_NUMBER     NAME     PATH     TOT_SIZE     DISK_SIZE     PARITION_CNT_PER_DISK
    0     1     ARCH     /dev/raw/raw100     53256     454460     14
    0     2     AAAREDO1     /dev/raw/raw111     10240     454460     14
    0     3     AAAREDO2     /dev/raw/raw113     10240     454460     14
    0     4     CRS     /dev/raw/raw83     3000     454460     14
    0     5     BBBDATA1     /dev/raw/raw10     50232     454460     14
    0     6     BBBDATA2     /dev/raw/raw41     50232     454460     14
    0     7     BBBREDO1     /dev/raw/raw1     10240     454460     14
    0     8     BBBREDO2     /dev/raw/raw3     10240     454460     14
    0     9     CCCDATA1     /dev/raw/raw75     76400     454460     14
    0     10     CCCDATA2     /dev/raw/raw165     51300     454460     14
    0     11     CCCREDO1     /dev/raw/raw118     10240     454460     14
    0     12     CCCREDO2     /dev/raw/raw120     10240     454460     14
    0     13     CCCDATA1     /dev/raw/raw125     51300     454460     14
    0     14     BBBDDATA     /dev/raw/raw71     57300     454460     14
    .Thanks in advance..
    Best Regards.
    Edited by: 869578 on 2012. 12. 23 오후 10:05

    1. No. The stripe size always equals 128 KB in any configuration.
    (http://docs.oracle.com/cd/E11882_01/server.112/e18951/asmcon.htm#BABCGDBF)That is not a true statement. Please read the document, the stripe size depends upon what method of striping we using (fine-grained or coarse-grained)
    --from the same oracle document:
    To stripe data, Oracle ASM separates files into stripes and spreads data evenly across all of the disks in a disk group. The fine-grained stripe size always equals 128 KB in any configuration; this provides lower I/O latency for small I/O operations. The coarse-grained stripe size is always equal to the AU size (not the data extent size).
    --are we using fine grained or coarse-grained ? and how to change the striping method (using TEMPLATES)
    http://docs.oracle.com/cd/E11882_01/server.112/e16102/asmfiles.htm#g2223792
    also see following:
    http://oracletechlovers.blogspot.com/2012/06/asm-differences-between-corse-and-fine.html

  • Oracle Linux Patching/Updates Impact on Oracle Database

    I have several questions regarding Oracle Linux patching and its impact on Oracle Database.
    3 node Cluster
    Operating System: Oracle Linux Release 5 update 2
    Kernel: 2.6.18-92.1.22.0.1.el5 x86_64 GNU/Linux
    Grid Infrastructure: Oracle Grid Infrastructure 11g Release 2 (11.2.0.2)
    Database: Oracle Database 11g Release 2 Enterprise Edition (11.2.0.2) with RAC option
    ASM with ASMLib is being used for Data and FRA.
    *1)* Given your at Oracle Linux Release 5 update 2, will applying only Security Patches require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    *2)* Given your at Oracle Linux Release 5 update 2, will applying Bug Fixes and Security Patches to Oracle Linux 5 update 2 require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    *3)* Given your updating from Oracle Linux Release 5 update 2 to Oracle Linux Release 5 update 8, will this require any changes to ASMLib, Oracle Grid Infrastructure and/or Oracle Database (software binaries, configuration etc.)?
    I would most whole heartedly appreciate if someone could answer the specific questions asked, inline if possible. Our System Administrator is preparing to perform some patching and as the DBA I'd like to be certain what changes I need to prepare for? I also have a single instance database setup with Oracle Restart. I don't know if this impacts the answers above.
    Thanks in advance.

    How do you plan to apply Oracle Linux security patches? As far as I'm aware the yum security plug-in does not work with the Oracle public yum repository and there is no really feasible way to automate and determine security related patches only, unless you setup Oracle Enterprise Manager Grid Control (11g) or Cloud (12c)  and have a subscription to Oracle ULN.
    If you upgrade your Oracle Linux to the latest available version using the public yum repository, all patches, including errata will be applied. You cannot apply patches and stay on a specific release version unless you have a subscription and appropriate yum repository access.
    As far as I'm aware there are no changes required to your Oracle database or ASM setup and configuration when updating the OS, provided the version of the Oracle database is supported for the specific OS version (ASM features like ADVM/ACFS are kernel version depending). Upgrading from one major release to another, such as upgrading Oracle Linux 5 to Oracle Linux 6 is not supported and will require upgrading the Oracle Database to 11.2.0.3. You can check the Oracle database certification matrix to determine which Oracle database release version is required for which OS version http://docs.oracle.com/cd/E11882_01/relnotes.112/e23558/toc.htm
    The relinking of Oracle Database binaries is a common practice when updating the OS. I do not think it is necessary under Linux. Oracle binaries are typically standalone applications, or use Oracle provided libraries, or in some cases use OS shared libraries, which does not require relinking of Oracle binaries. Upgrading the Oracle database software of course requires relinking.
    Edited by: Dude on Dec 4, 2012 2:09 PM

Maybe you are looking for

  • Reconciliation report for product master

    Hello friends, I have an issue with the product master (material master) in GTS system. There are few materials that are not available in my GTS system which are there in my ERP system. I know that I can compare the tables in the 2 systems and get th

  • Authorization object

    Dear all, I need to know any tcode or report which can tell about the authorization object for one user, i mean List of all authorization objects executable for users. i checked in tcode suim, that can tell me that user authorization for roles, tcode

  • Has anyone else noticed that Verizon Staff have an issue with comprehension??

    This makes the second time I've contacted Verizon to have something replaced/fixed...AGAIN!! Instead of sending the item to where I'll be...they send it to my home address which I DON'T SEE FOR 3 - 4 MONTHS AT A TIME!!!!!!!!!!!!!!!!!!! They give you

  • Re: Which Toshiba laptop should I buy?

    Hey, I want to buy Toshiba laptop, this site review two laptops. I want to buy One of them But Which one? [http://www.squidoo.com/toshiba-satellite-l505-gs5037-trubrite-15-6-inch-laptop]

  • Database performance issue

    Hi all, I am having a system with 64gb ram with oracle 11g installed in it with solaris 10 as Operating system, i have assigned 16gb to memory_target with dynamic memory management, but the performance of the system not as expected can any guied me o