Oracle 9i DB 2 Disk Configuration

Hello,
I have an ORacle 8i (8.1.5.0.4) database running on a Novell 5 server that I want to migrate to an Oracle 9i Linux Red Hat server.
The tablespace should be divided in two, so that one table space should contain just one very large table and be stored on one hard disk.
The second hard disk should store the other tablespace will all other smaller tables.
The database should read from both tablespaces simultaneously.
1) What parameter files should I look at on my Novell server running Oracle 8i to set this up on Oracle 9i ?
2) How can I go about configuring this using the runInstaller + DBCA ?
Regards,
Paolo

Hello again,
One tablespace is about 400 Mbytes and the other about 200Mbytes.
Regards,
Paolo

Similar Messages

  • Internal disk configuration for oracle

    Hi experts
    I need some guidance for internal disk configuration for oracle
    requirements are for 2 node clustered VM on linux OS OEL
    the OS will be for RAC, OEM
    will RAID 5 be optimal setting
    this is not production env
    thanks

    912919 wrote:
    Hi experts
    I need some guidance for internal disk configuration for oracle
    requirements are for 2 node clustered VM on linux OS OEL
    the OS will be for RAC, OEM
    will RAID 5 be optimal settingFor most definition of "optimal" the answer is "NO"
    RAID+10 provides better performance.
    Handle:     912919
    Status Level:     Newbie
    Registered:     Feb 7, 2012
    Total Posts:     135
    Total Questions:     74 (46 unresolved)
    why do you waste time here when you rarely get your questions answered?

  • Would like to know if this is correct disk configuration for 11.2.0.3

    Hello, please see the procedure below that I used to allow the grid infratstructure 11.2.0.3 oui to be able
    to recognize mY EMC San disks as candidate disks for use with ASM.
    we are using EMC powerpath for our multipathing as stated in the original problem description.I want to know if this is a fully supported method for
    configuring our san disks for use with oracle ASM becuase this is redhat 6 and we do not have the option to use the asmlib driver.Please note that I have
    been able to successfully install the gird infrastructure successfully for a 2 node RAC cluster at this point using this method.Please let me know if there
    any issue with configuring disks using this method.
    We have the following EMC devices which have been created in the /dev directory.I will be using device emcpowerd1 as my disk for the ASM diskgroup I will be
    creating for the ocr and voting device during grid install.
    [root@qlndlnxraccl01 grid]# cd /dev
    [root@qlndlnxraccl01 dev]# ls -l emc*
    crw-r--r--. 1 root root 10, 56 Aug 1 18:18 emcpower
    brw-rw----. 1 root disk 120, 0 Aug 1 19:48 emcpowera
    brw-rw----. 1 root disk 120, 1 Aug 1 18:18 emcpowera1
    brw-rw----. 1 root disk 120, 16 Aug 1 19:48 emcpowerb
    brw-rw----. 1 root disk 120, 17 Aug 1 18:18 emcpowerb1
    brw-rw----. 1 root disk 120, 32 Aug 1 19:48 emcpowerc
    brw-rw----. 1 root disk 120, 33 Aug 1 18:18 emcpowerc1
    brw-rw----. 1 root disk 120, 48 Aug 1 19:48 emcpowerd
    brw-rw----. 1 root disk 120, 49 Aug 1 18:54 emcpowerd1
    brw-rw----. 1 root disk 120, 64 Aug 1 19:48 emcpowere
    brw-rw----. 1 root disk 120, 65 Aug 1 18:18 emcpowere1
    brw-rw----. 1 root disk 120, 80 Aug 1 19:48 emcpowerf
    brw-rw----. 1 root disk 120, 81 Aug 1 18:18 emcpowerf1
    brw-rw----. 1 root disk 120, 96 Aug 1 19:48 emcpowerg
    brw-rw----. 1 root disk 120, 97 Aug 1 18:18 emcpowerg1
    brw-rw----. 1 root disk 120, 112 Aug 1 19:48 emcpowerh
    brw-rw----. 1 root disk 120, 113 Aug 1 18:18 emcpowerh1
    As you can see the permissions by default are root:disk and this will be set at boot time.These permissions do not allow the Grid Infrastructure to recognize
    the devices as candidates for use with ASM so I have to add udev rules to assign new names and permissions during boot time.
    Step 1. Use the scsi_id command to get the unique scsi id for the device as follows.
    [root@qlndlnxraccl01 dev]# scsi_id whitelisted replace-whitespace --device=/dev/emcpowerd1
    360000970000192604642533030434143
    Step 2. Create the file /etc/udev/rules.d/99-oracle-asmdevices.rules
    Step 3. With the scsi_id that was obtained for the device in step 1 you need to create a new rule for that device in the /etc/udev/rules.d/99-oracle-
    asmdevices.rules file. Here is what the rule for that one device looks like.
    KERNEL=="sd*1" SUBSYSTEM=="block",PROGRAM="/sbin/scsi_id --whitelisted --replace-whitespace /dev/$name",RESULT=="360000970000192604642533030434143",NAME="asm
    crsd1",OWNER="grid",GROUP="asmadmin",MODE="0660"
    ( you will need to create a new rule for each device that you plan to use as a candidate disk for use with oracle ASM).
    Step 4. Reboot the host for the new udev rule to take affect and then verify that the new device entry will be added into the /dev directory with the
    specified name, ownership and permissions that are required for use with ASM once the host is back online.
    Note: You will need to replicate/copy the /etc/udev/rules.d/99-oracle-asmdevices.rules file to all nodes in the cluster and restart them for the changes to
    be in place so that all nodes can see the new udev device name in the /dev directory on each respective node.
    You should now see the following device on the host.
    [root@qlndlnxraccl01 rules.d]# cd /dev
    [root@qlndlnxraccl01 dev]# ls -l asm*
    brw-rw----. 1 grid asmadmin 65, 241 Aug 2 10:10 asmcrsd1
    Step 5. Now when you are running the oui installer for the grid installation when you get to the step where you define your ASM diskgroup you should choose
    external redundancy and then click on the change disk dicovery path and change the disk discovery path as follows.
    /dev/asm*
    Now at this point you will see the new disk name asmcrsd1 showing as a condidate disk for use wiith ASM.
    PLease let us know if this is a supported method for our shared disk configuration.
    Thank you.

    Hi,
    I've seen this solution in a lot of forums but I do not agree or don't like at all; even if we have 100 luns of 73GB each.
    so the thing is, as in any other unix flavor we don't have asmlib***just EMCPOWERPATH running on differentes unix/linux flavors we dont like either udev-rules, dm-path and stuff***
    Try this as root user
    ls -ltr emcpowerad1
    brw-r----- 1 root disk 120, 465 Jul 27 11:26 emcpowerad1
    # mknod /dev/asmdisks
    # chown oragrid:asmadmin /dev/asmdisks
    # cd /dev/asmdisks
    # mknod VOL1 c 120 465
    # chmod 660 /dev/asmdisks/VOL*
    repeat above steps on second node
    asm_diskstring='/dev/asmdisks/*'
    talk with sysadmin and stoadm guys to garanty naming and persistents in all nodes of your RAC using emcpowerpath. (even after reboot or san migration)

  • Oracle RMAN backup to disk on vbox4.2 shared folders

    [https://forums.virtualbox.org/viewtopic.php?f=7&t=53683]
    Cross posting a virtualbox forum post in case someone has this working.
    [posting snippet]
    Anyone successfully using Oracle 10.2/11.2 RMAN to backup to mounted vbox guest shared folder? I'm thinking there may be some special configuration requirement like there is with NFS share mount options.
    RMAN> backup incremental level = 0 database include current controlfile plus archivelog delete input;
    [lengthy output clipped]
    RMAN-00571: ===========================================================
    RMAN-00569: =============== ERROR MESSAGE STACK FOLLOWS ===============
    RMAN-00571: ===========================================================
    RMAN-03002: failure of backup plus archivelog command at 01/18/2013 00:03:14
    ORA-19504: failed to create file "/media/sf_backup/vux099/oracle/vux099db/dataS217_P1_T804988992"
    ORA-27040: file create error, unable to create file
    Linux-x86_64 Error: 22: Invalid argument
    Additional information: 2
    RMAN>
    Recovery Manager complete.
    oracle@vux099:vux099db1 [app/oracle]
    $ touch /media/sf_backup/vux099/oracle/vux099db/myfile; ls -l /media/sf_backup/vux099/oracle/vux099db/myfile
    -rw-r--r-- 1 oracle oinstall 0 Jan 18 00:04 /media/sf_backup/vux099/oracle/vux099db/myfile
    oracle@vux099:vux099db1 [app/oracle]
    $ touch /media/sf_backup/vux099/oracle/vux099db/myfile;
    oracle@vux099:vux099db1 [app/oracle]
    $ mount | grep sf_backup
    backup on /media/sf_backup type vboxsf (uid=51115,gid=51116,rw)
    oracle@vux099:vux099db1 [app/oracle/base/admin/vux099db1/bin]
    $ getent passwd 51115; getent group 51116
    oracle:*:51115:51116:Oracle Administrator:/app/oracle:/bin/bash
    oinstall:*:51116:grid,oracle
    oracle@vux099:vux099db1 [app/oracle/base/admin/vux099db1/bin]
    $ printf "show all;\nexit\n" | rman nocatalog target / | grep DISK
    CONFIGURE DEFAULT DEVICE TYPE TO DISK; # default
    CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/media/sf_backup/vux099/oracle/vux099db/%F';
    CONFIGURE DEVICE TYPE DISK PARALLELISM 2 BACKUP TYPE TO COMPRESSED BACKUPSET;
    CONFIGURE DATAFILE BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE ARCHIVELOG BACKUP COPIES FOR DEVICE TYPE DISK TO 1; # default
    CONFIGURE CHANNEL DEVICE TYPE DISK FORMAT '/media/sf_backup/vux099/oracle/vux099db/dataS%s_P%p_T%t';
    oracle@vux099:vux099db1 [app/oracle/base/admin/vux099db1/bin]
    $
    [end]
    Edited by: user12130856 on Jan 18, 2013 8:08 PM

    Hi,
    never tried it, but I know that the shared folders in vbox don't work like normal filesystems.
    I would rather setup an NFS server on the host and mount an NFS share in the guest.
    Regards
    Sebastian

  • Oracle hardware and storage solution configuration questions

    Hi all,
    I am configuring hardware and the storage solution for a project and am hoping to have some questions answered about using Oracle as the storage solution.
    The current setup will have 2 Dell NX3100 NAS gateways each with dual quad core processors, 24GB of RAM, 12x2TB data disks, and running Windows Storage Server 2008 64bit as the OS.
    Will also have direct attached storage of 2 Dell PowerVault MD1200 disk arrays, each disk array with 12 x 2Terabyte SAS disk drives giving a total of 36TB of storage space for each NAS Gateway.
    Based on this information, is there any problem with two Oracle Standard Edition installation (1 per NAS) holding up to 36TB of data (mostly high res images) in this hardware configuration?
    Does Oracle have a built in solution for replicating data between the 2 NAS heads and down to the disk arrays? Where the application sever will write to one of the NAS+disk arrays and then that data is written from the first NAS to the 2nd NAS+disk array? Currently I've used DoubleTake in other projects but am wondering if Oracle has something similar that is built in.
    Finally, will Backup Exec Oracle agent work with this configuration for backing up the data to a Dell PowerVault ML6020 Tape backup device?
    Thanks in advance for any insight.

    Hi,
    Does Oracle have a built in solution for replicating data between the 2 NAS heads and down to the disk arrays? Where the application sever will write to one of the NAS+disk arrays and then that data is written from the first NAS to the 2nd NAS+disk array? Currently I've used DoubleTake in other projects but am wondering if Oracle has something similar that is built in.NAS - I still doubt during the network issues (In case of RAC - all nodes would get afftected), I would not suggest certainly for this. Let the other experts reply back.
    - Pavan Kumar N

  • How to determine raw disks configured for OCR/voting disk, ASM spfile

    I have a two-node Oracle 10gR2 RAC configuration using raw disks. Basically, raw disks are used for CRS's OCR/voting disks, ASM's ASM spfile and disk groups.
    Is there a better way to figure out what raw disks are configured in Oracle using methods other than those shown below:
    - To find out votedisk:
    # crsctl query css votedisk
    0. 0 /dev/ora_crs_vote1
    1. 0 /dev/ora_crs_vote2
    2. 0 /dev/ora_crs_vote3
    - To find out OCR:
    # ocrcheck
    Status of Oracle Cluster Registry is as follows :
    Version : 2
    Total space (kbytes) : 525836
    Used space (kbytes) : 3856
    Available space (kbytes) : 521980
    ID : 1603037329
    Device/File Name : /dev/ora_ocr_file1
    Device/File integrity check succeeded
    Device/File Name : /dev/ora_ocr_file2
    Device/File integrity check succeeded
    Cluster registry integrity check succeeded
    - Is there a way to figure out what disk device is used for ASM spfile?
    - To find out raw disks configured for disk groups:
    while connected to the ASM instance in sqlplus:
    SQL> select name,path from v$asm_disk where name like 'DG%';
    NAME
    PATH
    DG_DC_ASM_0000
    /dev/rhdiskpower13
    DG_DC_ASM_0001
    /dev/rhdiskpower14
    DG_DC_ASM_0002
    /dev/rhdiskpower15
    NAME
    PATH
    DG_DC_ASM_0003
    /dev/rhdiskpower22

    http://docs.oracle.com/cd/B19306_01/install.102/b14203/storage.htm#BABFFBBA
    and
    Configuring raw devices (singlepath) for Oracle Clusterware 10g Release 2 (10.2.0) on RHEL5/OEL5 [ID 465001.1]
    Configuring raw devices (multipath) for Oracle Clusterware 10g Release 2 (10.2.0) on RHEL5/OEL5 [ID 564580.1]

  • Oracle 10g ASM and RAC configuration

    Hi all,
    I want to ask to everybody something about Oracle 10g RAC and ASm configuration. We plan to migrate to Oracle 10g from 9i, and we will begin configuring oracle but we have to decide which configuration are the best.
    Our materials are bellow:
    Hardware: RP 3440 (HP)
    OS : HPUX 11i Ver 1
    Storage: EVA 4000 (eva disk group)
    The problem is:
    Our supplier recommand us to use HP serviguard + HP serviceguard extension for RAC+ RAc and Raw device as configuration.
    But we want to use Oracekl Clusterware + RAC + ASM
    My question is if anybody know what is the best configuration, we want to use ASm.
    Can HP serviguard use ASM.
    Some documentations or link explain oracle RAC and ASM configuration will be appreciate.
    Thanks for your help.
    Regards.
    raitsarevo

    Hi,
    I want to use RAC for clustering. My shared disk is a NetApp Filer FS250 that can only be mounted throught NFS. RAW devices have to be excluded, alsi OCFS i think works similar to raw devices and need to see phisical disk to create partition. ASM instead can work on an NFS mount?
    Ste
    Visit http://www.stefanocislaghi.it/

  • Is this a "sound" disk configuration?

    I'm new to using Oracle and I will soon be installing Oracle 10g Standard Edition One on a Windows 2K3 server. Would this disk configuration be considered "proper"?
    Two 18gb disks Raid1(mirrored) - C Drive
    This is where I will install Windows 2K3
    Four 36gb disks Raid0+1 - D Drive
    This is where I will install the Oracle db data.
    Additional items that I'm not aware of yet.
    Do you install the Oracle program on the C drive and the Oracle db data on the D drive?
    Is Oracle like MS SqL server where you would write the db transaction logs to another drive than where your db data resides?
    Any input appreciated.

    Do not use Leopard's Disk Utility to repair disk of Tiger OS. They are different OS's and have different parameters. Nothing to query about. If you can't find your Tiger installer disk then try booting (holding command-s), when you see the white text type:
    fsck -yf hit return
    repeat until no errors are found. Then type:
    reboot -n hit return
    Again do not use Leopard to repair a Tiger disk.
    Then go find your Tiger installation disk. It should be in a zip lock bag in the drawer next to your Mac.

  • Oracle CRS stack is already configured while running root.sh

    Hi,
    I am trying to install cluster ware in for 10g (10.2.0.1)RAC in RHEL5 node 1 and node 2 servers. Already i tried install clusterware but my installation failed in last step. So i uninstalled and tried my installation again from node 1. But when i execute the ./root.sh as root user in node 1 or node 2 i get the below error
    WARNING: directory '/u01/app/oracle/product/10.2.0' is not owned by root
    WARNING: directory '/u01/app/oracle/product' is not owned by root
    WARNING: directory '/u01/app/oracle' is not owned by root
    WARNING: directory '/u01/app' is not owned by root
    WARNING: directory '/u01' is not owned by root
    Checking to see if Oracle CRS stack is already configured
    Oracle CRS stack is already configured and will be running under init(1M)
    How to remove or deconfig this CRS and CSS service properly and proceed the installation.????
    Regards,
    007

    cd <GRID_HOME>/crs/install
    run as root:
    # rootcrs.pl -deconfig -force
    then run under oracle user:
    <GRID_HOME>/deinstall/deinstall
    This should do.
    If you still see this warnings, check if you have any oracle-owned files under /etc, for example /etc/oracle dir with local ocr/olr location files.
    Consider renaming/removing them and try again.

  • UCSM 2.1 Local disk configuration policy and raid volumes

    Hi!
    If i use Any configuration as local disk configuration policy and do the raid settings directly to the RAID-cards, am i able to have two raid volumes on C-series under UCSM management?
    What i would like to do with C240M3 with 6 local disks: 2 disk raid1 and 4 disk raid0
    So i would use:
    "Any Configuration—For a server configuration that carries forward the local disk configuration without any changes."
    As UCS servers Raid guide indicates:
    "Maximum of One RAID Volume and One RAID Controller in Integrated Rack-Mount Servers
    A rack-mount server that has been integrated with Cisco UCS Manager can  have a maximum of one RAID volume irrespective of how many hard drives  are present on the server. "
    Is this paragraph limitation of GUI not able to set several volumes or hard fact without "Any configuration" workaround?

    I did some testing about this issue:
    Changed Local Disk Configuration to "Any Configuration"
    Two virtual disks can be created from Raid card's WebBIOS
    These disks are visible to RedHat Installation.
    UCSM shows Any configuration for the Storage Local Disk policy
    Actual Disk Configuration has faulty information - WebBios is the only place to check the RAID status?
    Next step: I'll do the same for the production

  • Disk configuration and workflow help needed for lab video workstation

    Hi All,
    Setting up a video editing workstation for a research lab that will use Premeire to edit AVCHD Progressive clips (sometimes with 2 streams side-by-side, but usually single-camera) and export them to .mp4 for later viewing by video coders. We won't be using AfterEffects or adding anything to the videos other than some text (titles, maybe sub-titles).
    The other purpose of this workstation is to act as a file server and backup system for other machines in the lab. Coders will be viewing the exported videos via other networked machines and working with Microsoft Office files that will be stored on the workstation's other HDDs. I'll have a physical backup drive and cloud backup via CrashPlan.
    I've built a machine that is probably overkill, but the client (my wife) wanted it to be "fast," and the purpose of the machine might change in the future:
    i7-4770K (overclocked a bit)
    16GB RAM
    Asus Z87-Pro
    GeForce GTX 660
    I have the OS (W7) and programs on a 256 GB Samsung 840 Pro SSD and currently have two 1TB Velociraptors to use for the Premiere workflow. I'm trying to figure out how to proceed with the purchase of the rest of the drives, and I want to keep the Premiere drives separate from the large storage drives from the lab that are networked and synced to cloud backup.
    Following the recommendations for a three-disc configuration I've picked up on these forums, I could set it up like this:
    C: (256GB SSD) (OS, programs, pagefile)
    D: (1TB HDD) (media, projects)
    E: (1TB HDD) (previews, media cache, exports)
    F: (4TB HDD) (backups of media, projects, and exports and storage of other research files)*THIS DRIVE WOULD BE SHARED ON THE NETWORK
    G: (4TB external HDD) (backup of F & drive that backs up to CrashPlan)
    but it seems that would be a waste of the speed of the second 10k velociraptor. If I added another SSD and RAIDed the Velociraptors it would be:
    C: (256GB SSD) (OS, programs)
    D: (Two 1TB Velociraptors in RAID 0) (media, projects)
    E: (256GB SSD) (media cache, pagefile)
    but would I then need to add another dedicated HDD for previews and exports, or could I store those on the networked F: from above (which would be previews, exports, backups of media and projects, and storage of other research files) without taking a speed hit?
    It seems overkill to have a dedicated drive for exports and previews (let's make that the new F:), then have them copy to the first 4TB drive (now G:), then back that up to the second 4TB drive (now H:), then back that up to CrashPlan. However, people might be accessing that network drive at any time, and I don't want that to slow any part of the video process down.
    I appreciate any advice ya'll can give me!

    Hi Jim,
    Thanks for the encouraging response. I'm leaning toward the non-SSD option at this point. 
    To make sure I understand, are you suggesting I try using the Velociraptor Raid 0 in the 2 disk configuration suggested by Harm's Guidelines for Disk Usage chart? Like this:
    C: (256 GB SSD) (OS, Programs, Pagefile, Media Cache)
    D: (1TB x2 in RAID 0) (Media, Projects, Previews, Exports)?
    Where I'm still confused there, and in looking at Harm's array suggestions for 5 or more drives, is how performance is affected by having simultaneous read/write operations happening on the same drive, which is what I understood was the reason for spreading out the files on multiple drives. Maybe I don't understand how Premiere's file operations work in practice, or maybe I don't understand RAID 0 well enough.
    In the type of editing we'll be doing (minimal) aren't there still times when Premiere will be trying to read and write from the D: drive at the same time, for example during export? Wouldn't the increased speed benefits of RAID 0 for either read or write alone be defeated by asking the array to do both simultaneously?
    Maybe the reason the Media Cache is on the SSD in the above configuration is because that is what will be read while writing to something like Exports? But that wouldn't make sense given Harm's chart, which has the Media Cache also located on the array....
    Another question is, given that the final home of the exported videos will be on the big internal drive (4TB) anyway, could I set it up like this:
    C: (SSD) (OS, Programs, Pagefile, Media Cache)
    D: (2TB RAID 0) (Media, Projects, Previews)
    E: (network shared 4TB HDD) (Exports + a bunch of other shared non-video files)
    so I don't end up having to copy the exported videos over to the 4TB drive? Do you think it would render significantly faster to the RAID than it would to the 7200 rpm 4TB drive? I'd like to cut out the step of copying exported videos from D: to E: all the time if it wasn't necessary.
    Thanks again.

  • Disk Configurations

    I'm building a new system and have some questions about what sort of disk configuration to put together.  Probably about 90% of my source will be AVCHD (more details in my earlier post).  The articles on this forum are great and have been very helpful but I'm still confused.  The Generic Guideline for Disk Setup talks about distributing access across as many disks as possible but then shows all configurations with more than 4 disks as placing everything except the OS, programs, and pagefile on the same RAID.  A file is distributed across multiple disks in a RAID but it's one logical drive so there must be head contention if more than one file is needed at the same time from that RAID.  Wouldn't a setup like this work better?
    C: [1 Drive] OS, Programs
    D: [RAID 3] Media, Projects
    E: [RAID 0] Pagefile, Media Cache
    F: [1 Drive] Previews, Exports
    Would there be any problems having multiple RAIDs?  In the above example, the RAID 3 would require a hardware controller and the RAID 0 could run off the ICH10R on the motherboard.  Can  ICH10R support multiple RAIDS (more than one RAID 0) and can a hardware controller (say, an Areca) support more than one RAID?  If so, would it be better to run both the RAID 3 and RAID 0 in this example off the Areca?
    To RAID or not to RAID has been helpful but I'm still not clear on everything.  What are the differences between an inexpensive controller like the Areca ARC-1210 and the more expensive models which can cost 4 times as much?  Obviously the more expensive controllers have faster processors and more cache but do you get 4 times the performance?  I'm sure a high-end controller would be helpful if you're editing 4K files or uncompressed HD but I suspect it's not worth the expense for a mostly-AVCHD environment.
    What about using RAID 0 for source media?  I understand the likelihood of problems increases with the number of disks but what does that mean in the real world?  I've been using my current drives (Seagate SCSIs) for about 7 years and have never had a problem.  In fact I've owned computers with hard drives since the early 80s and don't believe I've ever had a disk fail on me.  Of course everything needs to be backed up but how often might I be rebuilding a RAID 0 due to disk failure?  Maybe I've been very lucky or maybe "they don't build 'em like they used to".
    I've been using (parallel)SCSI for over 10 years but no longer believe it's cost effective.  It seems like adding more SATA drives to a RAID would be cheaper than expensive 15K RPM SAS drives.  Does everyone agree with that?  Also, SAS drives are only available in much smaller capacities than SATA drives.
    A hardware controller is required for RAID 3 and strongly recommended for RAID 5 but do they offer an advantage for RAID 0?  What about for RAID 10?  One advantage would be providing extra ports since most motherboards only provide 6 SATA ports.  Does one motherboard offer any better SATA and RAID performance than any other or are they all about the same in that regard?
    Is there any advantage to external RAIDS other than convenience in moving data from one computer to another?  It seems like a controller directly on the bus would be faster than one connected externally.
    Is there any disadvantage to running SATA 3 drives on a SATA 2 controller?  A possible advantage might be the larger cache that some SATA 3 drives have.  Would a 64MB cache help much over a 32MB cache?  I've also heard SATA 3 can increase burst speeds.  If I have two SATA 3 ports, and I'm using one on an SSD for the OS, would it help to use the other port for another drive or might that take away bandwidth from the SSD?
    I've run across some things (don't have links handy) that indicate there may be problems with drives larger than 2 TB.  Is this just for single drives larger than 2 TB, RAIDs larger than 2 TB, or am I confused and this is not an an issue?
    What about specific drives that are quiet and perform well?  Quietness is important to me and I worry about building a box, with as many as 10 drives, sounding like an airport runway.  I've heard the Caviar Blues are quieter than the Black but I don't think they perform as well.  I've heard Samsung F3 are both quiet and fast and that's what I'm leaning towards at the moment.  What's with the F4?  Samsung's site says it's “Independently tested as the fastest 3.5” HDD available” yet it also refers to it as an “Eco-Green HDD”, which usually means slow.
    Should I use different drives in RAIDs than standalone?  I've heard “enterprise” models are better for RAIDs because of differences in their firmware error recovery.  These sources say “consumer” models are more likely to time-out in a RAID because they have more aggressive error recovery.  Is this true and should be a concern?
    Roy

    I'm looking forward to an answer too, because I have some of the same questions. I'm currently working with a systems integrator on a quote, and we are hashing out some details about a few things.
    I do a lot of uncompressed 10-bit, as well as some 1080p60 projects. So, for the RAID, to date, I'm going for an Areca ARC-1880ix-16. Funny thing is, there is not much price difference between the 12 and 16 port model. So I'm going to go with the 16-port model, and upgrade the cache to 4GB. Seems well worth it. I'll probably start out with an 8 disk RAID setup, and upgrade it n the future if need be.
    We did toy with the idea to build the RAID around SSDs.... Ouf, imagine having an 8 SSD RAID! (Corsair SSD Force Series 3). But realistically, I'll most likely go with normal SATA III drives. And since they are so inexpensive, I'll probably fill it to the brim. Or most likely, the capacity that the case can handle.
    But Roy has a good point. What about distributing the load on the array? Would it be more appropriate to make 2 RAID groups on the card? To balance the traffic of the media, cache, previews, pagefile and export?
    Roy, I can start answering some of your questions though (My years of being a PC tech comes in handy sometimes, hehe)
    Would there be any problems having multiple RAIDs?  In the above example, the RAID 3 would require a hardware controller and the RAID 0 could run off the ICH10R on the motherboard.  Can  ICH10R support multiple RAIDS (more than one RAID 0) and can a hardware controller (say, an Areca) support more than one RAID?  If so, would it be better to run both the RAID 3 and RAID 0 in this example off the Areca?
    From a technical standpoint, there are no problems running multiple RAIDs. But there would be a performance drawback if the RAID was software only (OS managed). Thankfully, on-board RAIDs do help, but there is still some CPU overhead to deal with on-boad RAID5, and very minimally RAID 0. Having a RAID card is always the better option if you can afford it. The performance, manageability and flexibility are unmatched, compared to any on-board motherboard RAID controllers. RAID 0 is simple and does not need much resources. So, yes, you could run the RAID 0 from the on-board controller of the motherboard. It would theoretically "offload" the 8x PCIe lane from extra traffic, but practically, I seriously doubt the disk I/O would exceed the PCIe bandwidth in the first place.
    What about using RAID 0 for source media?  I understand the likelihood of problems increases with the number of disks but what does that mean in the real world?  I've been using my current drives (Seagate SCSIs) for about 7 years and have never had a problem.  In fact I've owned computers with hard drives since the early 80s and don't believe I've ever had a disk fail on me.  Of course everything needs to be backed up but how often might I be rebuilding a RAID 0 due to disk failure?  Maybe I've been very lucky or maybe "they don't build 'em like they used to".
    I use P2 media. So I practice double copies. A working copy on the computer, the other on an external HD as a backup copy. Everyone using solid state media to record on, should do the same. Having said that. You know what RAID 0 means?  Zero chance of data recovery if 1 drive fails. The more drives in a RAID, the more likely a problem can arise. Packing drives tightly together will produce more heat if not well ventilated, and will reduce the life expectancy of any drive. I have come across some bad disks in my 20+ years dealing with computers as a tech. Not that many, but enough to not trust them, and enough to practice backups even if I had a RAID 5 or 6 (and a hotsparet). Even though I have a backup copy on an external drive for my source media, and even though I try to backup as often as I can, I can still loose other things (ancillary files) in my hypothetical RAID 0 media drive. Worst case? I could loose a day's worth of work, plus what ever time it takes to rebuild and restore everything from the previous night's backup (if I didn't forget). Time is money for most of us. And investing in a proper editing system is something I don't take lightly.
    A hardware controller is required for RAID 3 and strongly recommended for RAID 5 but do they offer an advantage for RAID 0?  What about for RAID 10?  One advantage would be providing extra ports since most motherboards only provide 6 SATA ports.  Does one motherboard offer any better SATA and RAID performance than any other or are they all about the same in that regard?
    There are no major advantages to use a RAID 0 or 10 on a standard addon hardware RAID controller, other then to free up ports on the motherboard, or have a higher disk count on your RAID. But higher end RAID cards with bigger cache, will be faster. On-board RAIDs do have some overhead, but for RAID0, it's not as drastic as RAID5. Motherboard SATA RAIDs, with the same chipset, for all intents and purposes, are basically the same performance. There may be small variations from one manufacturer or another, but nothing real world measurable.
    Is there any advantage to external RAIDS other than convenience in moving data from one computer to another?  It seems like a controller directly on the bus would be faster than one connected externally.
    Convenience, is subjectively proportional to your needs and disk quantity inside the computer casing. hehe What stops me from having more then 16 drives in my system, is the casing size for HDs and possible heat dissipation issues. I try to have a system that is self contained, and avoid using an external enclosure if I can. But regardless, the speed of internal and external ports on a RAID card is the same.
    I've run across some things (don't have links handy) that indicate there may be problems with drives larger than 2 TB.  Is this just for single drives larger than 2 TB, RAIDs larger than 2 TB, or am I confused and this is not an an issue?
    Not an issue with Windows 7.
    Frederic

  • Oracle 11g Server Installation and Configuration

    Hi All..
    I would like to know the estimate(in detail) for Oracle 11g Server Installation and Configuration.
    This is for a server and we might even need to replicate the entire DB.
    Can any on please help me out in this .
    Thank you

    Hi,
    Please post your question in the [Database |http://forums.oracle.com/forums/category.jspa?categoryID=18] forum.
    Regards,
    Hussein

  • Can't get the correct Oracle Developer Suite 10g disk 1

    I tried to download Oracle Developer Suite 10g disk 1. After download completed, I check the size is only around 560mb, not 577mb. It is so wield. Then I followed the instruction and double-click the exe. I always got error it is not a win32 application.
    I tried to use various way to download the disk1. I always got the same file and have the same problem.
    About disk2, it is fine. I am just wondering if others have a chance to meet the same situation? Or oracle is putting an wrong file for our download.
    Your warm hands will be appreciated.
    Thanks...
    -- ivy

    This download has been up for some time so I don't think it is a problem with the file itself. We recommend a download manager for anybody having issues transferring large files.
    OTN

  • (oracle.jbo.ConfigException) JBO-33001: Configuration file /tester.xcfg is

    I am getting the error "(oracle.jbo.ConfigException) JBO-33001: Configuration file /tester.xcfg is not found on the classpath" when I try to run the Application module.
    stack trace
    SEVERE: MDSConfigurationException encountered in parseADFConfigurationMDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
    oracle.mds.config.MDSConfigurationException: MDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
         at oracle.mds.config.CustConfig.getCustClassList(CustConfig.java:365)
         at oracle.mds.config.CustConfig.loadFromBean(CustConfig.java:277)
         at oracle.mds.config.CustConfig.<init>(CustConfig.java:242)
         at oracle.mds.config.MDSConfig.loadFromBean(MDSConfig.java:1145)
         at oracle.mds.config.MDSConfig.loadFromElement(MDSConfig.java:1218)
         at oracle.mds.config.MDSConfig.<init>(MDSConfig.java:781)
         at oracle.mds.core.MDSInstance.getMDSConfigFromDocument(MDSInstance.java:2788)
         at oracle.mds.core.MDSInstance.findAndStoreMDSInstanceWithCustConfig(MDSInstance.java:2621)
         at oracle.mds.core.MDSInstance.getOrCreateInstanceInternal(MDSInstance.java:2118)
         at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:812)
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:146)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.share.config.ADFConfigImpl.getResultFromComponent(ADFConfigImpl.java:541)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:612)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:590)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:655)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:650)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.readAdfConfig(AppBundleInfoRT.java:341)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.loadData(AppBundleInfoRT.java:123)
         at oracle.javatools.resourcebundle.AppBundleInfoFactoryRT.createAppBundleInfo(AppBundleInfoFactoryRT.java:83)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfoUnlocked(ResourceBundleUtils.java:334)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfo(ResourceBundleUtils.java:325)
         at oracle.javatools.resourcebundle.ResourceBundleCacheConfig.getCurrentAppConfig(ResourceBundleCacheConfig.java:109)
         at oracle.javatools.resourcebundle.ResourceBundleManagerRT.<init>(ResourceBundleManagerRT.java:84)
         at oracle.javatools.resourcebundle.ResourceBundleManager.getResourceBundleManager(ResourceBundleManager.java:183)
         at oracle.javatools.resourcebundle.BundleFactory.getMap(BundleFactory.java:86)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:245)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:206)
         at oracle.jbo.common.StringManager.getStringFromBundle(StringManager.java:590)
         at oracle.jbo.common.StringManager.getStringInternal(StringManager.java:538)
         at oracle.jbo.common.StringManager.getString(StringManager.java:485)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:313)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:267)
         at oracle.jbo.common.JboExHelperLocalized.getErrorMsg(JboExHelperLocalized.java:278)
         at oracle.jbo.common.JboExceptionHelper.getLocalizedMessage(JboExceptionHelper.java:203)
         at oracle.jbo.common.JboExHelperLocalized.getLocalizedMessage(JboExHelperLocalized.java:157)
         at oracle.jbo.common.JboExceptionHelper.getMessage(JboExceptionHelper.java:147)
         at oracle.jbo.JboWarning.getMessage(JboWarning.java:231)
         at oracle.jbo.JboException.<init>(JboException.java:347)
         at oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper.<init>(ErrorHandler.java:42)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:96)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:89)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:442)
    Apr 23, 2013 5:24:47 AM oracle.javatools.resourcebundle.AppBundleInfoRT loadData
    SEVERE: { type : AppBundleInfoRT, id : 'en_US-ScmEss.oracle.apps.scm-null', moRefName : null, appBundleName : null, writable : false, dirty : false, hasMdsConfig : false, appOverrideBundle : null}: Fail to read adf-config.xml
    oracle.adf.share.ADFShareException: MDSConfigurationException encountered in parseADFConfiguration
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:209)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.share.config.ADFConfigImpl.getResultFromComponent(ADFConfigImpl.java:541)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:612)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:590)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:655)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:650)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.readAdfConfig(AppBundleInfoRT.java:341)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.loadData(AppBundleInfoRT.java:123)
         at oracle.javatools.resourcebundle.AppBundleInfoFactoryRT.createAppBundleInfo(AppBundleInfoFactoryRT.java:83)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfoUnlocked(ResourceBundleUtils.java:334)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfo(ResourceBundleUtils.java:325)
         at oracle.javatools.resourcebundle.ResourceBundleCacheConfig.getCurrentAppConfig(ResourceBundleCacheConfig.java:109)
         at oracle.javatools.resourcebundle.ResourceBundleManagerRT.<init>(ResourceBundleManagerRT.java:84)
         at oracle.javatools.resourcebundle.ResourceBundleManager.getResourceBundleManager(ResourceBundleManager.java:183)
         at oracle.javatools.resourcebundle.BundleFactory.getMap(BundleFactory.java:86)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:245)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:206)
         at oracle.jbo.common.StringManager.getStringFromBundle(StringManager.java:590)
         at oracle.jbo.common.StringManager.getStringInternal(StringManager.java:538)
         at oracle.jbo.common.StringManager.getString(StringManager.java:485)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:313)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:267)
         at oracle.jbo.common.JboExHelperLocalized.getErrorMsg(JboExHelperLocalized.java:278)
         at oracle.jbo.common.JboExceptionHelper.getLocalizedMessage(JboExceptionHelper.java:203)
         at oracle.jbo.common.JboExHelperLocalized.getLocalizedMessage(JboExHelperLocalized.java:157)
         at oracle.jbo.common.JboExceptionHelper.getMessage(JboExceptionHelper.java:147)
         at oracle.jbo.JboWarning.getMessage(JboWarning.java:231)
         at oracle.jbo.JboException.<init>(JboException.java:347)
         at oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper.<init>(ErrorHandler.java:42)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:96)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:89)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:442)
    Caused by: oracle.mds.config.MDSConfigurationException: MDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
         at oracle.mds.config.CustConfig.getCustClassList(CustConfig.java:365)
         at oracle.mds.config.CustConfig.loadFromBean(CustConfig.java:277)
         at oracle.mds.config.CustConfig.<init>(CustConfig.java:242)
         at oracle.mds.config.MDSConfig.loadFromBean(MDSConfig.java:1145)
         at oracle.mds.config.MDSConfig.loadFromElement(MDSConfig.java:1218)
         at oracle.mds.config.MDSConfig.<init>(MDSConfig.java:781)
         at oracle.mds.core.MDSInstance.getMDSConfigFromDocument(MDSInstance.java:2788)
         at oracle.mds.core.MDSInstance.findAndStoreMDSInstanceWithCustConfig(MDSInstance.java:2621)
         at oracle.mds.core.MDSInstance.getOrCreateInstanceInternal(MDSInstance.java:2118)
         at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:812)
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:146)
         ... 35 more
    Apr 23, 2013 5:24:51 AM oracle.jbo.jbotester.MainFrame exit
    INFO: BC4J Tester exit code(-3)Please help me to solve this.
    Edited by: Manikanda Prabhu on Apr 23, 2013 5:29 AM

    I am getting the error "(oracle.jbo.ConfigException) JBO-33001: Configuration file /tester.xcfg is not found on the classpath" when I try to run the Application module.
    stack trace
    SEVERE: MDSConfigurationException encountered in parseADFConfigurationMDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
    oracle.mds.config.MDSConfigurationException: MDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
         at oracle.mds.config.CustConfig.getCustClassList(CustConfig.java:365)
         at oracle.mds.config.CustConfig.loadFromBean(CustConfig.java:277)
         at oracle.mds.config.CustConfig.<init>(CustConfig.java:242)
         at oracle.mds.config.MDSConfig.loadFromBean(MDSConfig.java:1145)
         at oracle.mds.config.MDSConfig.loadFromElement(MDSConfig.java:1218)
         at oracle.mds.config.MDSConfig.<init>(MDSConfig.java:781)
         at oracle.mds.core.MDSInstance.getMDSConfigFromDocument(MDSInstance.java:2788)
         at oracle.mds.core.MDSInstance.findAndStoreMDSInstanceWithCustConfig(MDSInstance.java:2621)
         at oracle.mds.core.MDSInstance.getOrCreateInstanceInternal(MDSInstance.java:2118)
         at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:812)
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:146)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.share.config.ADFConfigImpl.getResultFromComponent(ADFConfigImpl.java:541)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:612)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:590)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:655)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:650)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.readAdfConfig(AppBundleInfoRT.java:341)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.loadData(AppBundleInfoRT.java:123)
         at oracle.javatools.resourcebundle.AppBundleInfoFactoryRT.createAppBundleInfo(AppBundleInfoFactoryRT.java:83)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfoUnlocked(ResourceBundleUtils.java:334)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfo(ResourceBundleUtils.java:325)
         at oracle.javatools.resourcebundle.ResourceBundleCacheConfig.getCurrentAppConfig(ResourceBundleCacheConfig.java:109)
         at oracle.javatools.resourcebundle.ResourceBundleManagerRT.<init>(ResourceBundleManagerRT.java:84)
         at oracle.javatools.resourcebundle.ResourceBundleManager.getResourceBundleManager(ResourceBundleManager.java:183)
         at oracle.javatools.resourcebundle.BundleFactory.getMap(BundleFactory.java:86)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:245)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:206)
         at oracle.jbo.common.StringManager.getStringFromBundle(StringManager.java:590)
         at oracle.jbo.common.StringManager.getStringInternal(StringManager.java:538)
         at oracle.jbo.common.StringManager.getString(StringManager.java:485)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:313)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:267)
         at oracle.jbo.common.JboExHelperLocalized.getErrorMsg(JboExHelperLocalized.java:278)
         at oracle.jbo.common.JboExceptionHelper.getLocalizedMessage(JboExceptionHelper.java:203)
         at oracle.jbo.common.JboExHelperLocalized.getLocalizedMessage(JboExHelperLocalized.java:157)
         at oracle.jbo.common.JboExceptionHelper.getMessage(JboExceptionHelper.java:147)
         at oracle.jbo.JboWarning.getMessage(JboWarning.java:231)
         at oracle.jbo.JboException.<init>(JboException.java:347)
         at oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper.<init>(ErrorHandler.java:42)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:96)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:89)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:442)
    Apr 23, 2013 5:24:47 AM oracle.javatools.resourcebundle.AppBundleInfoRT loadData
    SEVERE: { type : AppBundleInfoRT, id : 'en_US-ScmEss.oracle.apps.scm-null', moRefName : null, appBundleName : null, writable : false, dirty : false, hasMdsConfig : false, appOverrideBundle : null}: Fail to read adf-config.xml
    oracle.adf.share.ADFShareException: MDSConfigurationException encountered in parseADFConfiguration
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:209)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)
         at oracle.adf.share.config.ADFConfigImpl.getResultFromComponent(ADFConfigImpl.java:541)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:612)
         at oracle.adf.share.config.ADFConfigImpl.getConfigObject(ADFConfigImpl.java:590)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:655)
         at oracle.adf.share.config.ADFConfigImpl.getMDSInstance(ADFConfigImpl.java:650)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.readAdfConfig(AppBundleInfoRT.java:341)
         at oracle.javatools.resourcebundle.AppBundleInfoRT.loadData(AppBundleInfoRT.java:123)
         at oracle.javatools.resourcebundle.AppBundleInfoFactoryRT.createAppBundleInfo(AppBundleInfoFactoryRT.java:83)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfoUnlocked(ResourceBundleUtils.java:334)
         at oracle.javatools.resourcebundle.ResourceBundleUtils.getAppBundleInfo(ResourceBundleUtils.java:325)
         at oracle.javatools.resourcebundle.ResourceBundleCacheConfig.getCurrentAppConfig(ResourceBundleCacheConfig.java:109)
         at oracle.javatools.resourcebundle.ResourceBundleManagerRT.<init>(ResourceBundleManagerRT.java:84)
         at oracle.javatools.resourcebundle.ResourceBundleManager.getResourceBundleManager(ResourceBundleManager.java:183)
         at oracle.javatools.resourcebundle.BundleFactory.getMap(BundleFactory.java:86)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:245)
         at oracle.javatools.resourcebundle.BundleFactory.getBundle(BundleFactory.java:206)
         at oracle.jbo.common.StringManager.getStringFromBundle(StringManager.java:590)
         at oracle.jbo.common.StringManager.getStringInternal(StringManager.java:538)
         at oracle.jbo.common.StringManager.getString(StringManager.java:485)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:313)
         at oracle.jbo.common.StringManager.getLocalizedString(StringManager.java:267)
         at oracle.jbo.common.JboExHelperLocalized.getErrorMsg(JboExHelperLocalized.java:278)
         at oracle.jbo.common.JboExceptionHelper.getLocalizedMessage(JboExceptionHelper.java:203)
         at oracle.jbo.common.JboExHelperLocalized.getLocalizedMessage(JboExHelperLocalized.java:157)
         at oracle.jbo.common.JboExceptionHelper.getMessage(JboExceptionHelper.java:147)
         at oracle.jbo.JboWarning.getMessage(JboWarning.java:231)
         at oracle.jbo.JboException.<init>(JboException.java:347)
         at oracle.jbo.jbotester.ErrorHandler$ExceptionWrapper.<init>(ErrorHandler.java:42)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:96)
         at oracle.jbo.jbotester.ErrorHandler.displayError(ErrorHandler.java:89)
         at oracle.jbo.jbotester.MainFrame.main(MainFrame.java:442)
    Caused by: oracle.mds.config.MDSConfigurationException: MDS-00035: cannot load the class: oracle.as.scheduler.metadata.EssCC.
         at oracle.mds.config.CustConfig.getCustClassList(CustConfig.java:365)
         at oracle.mds.config.CustConfig.loadFromBean(CustConfig.java:277)
         at oracle.mds.config.CustConfig.<init>(CustConfig.java:242)
         at oracle.mds.config.MDSConfig.loadFromBean(MDSConfig.java:1145)
         at oracle.mds.config.MDSConfig.loadFromElement(MDSConfig.java:1218)
         at oracle.mds.config.MDSConfig.<init>(MDSConfig.java:781)
         at oracle.mds.core.MDSInstance.getMDSConfigFromDocument(MDSInstance.java:2788)
         at oracle.mds.core.MDSInstance.findAndStoreMDSInstanceWithCustConfig(MDSInstance.java:2621)
         at oracle.mds.core.MDSInstance.getOrCreateInstanceInternal(MDSInstance.java:2118)
         at oracle.mds.core.MDSInstance.getOrCreateInstance(MDSInstance.java:812)
         at oracle.adf.share.config.ADFMDSConfig.parseADFConfiguration(ADFMDSConfig.java:146)
         ... 35 more
    Apr 23, 2013 5:24:51 AM oracle.jbo.jbotester.MainFrame exit
    INFO: BC4J Tester exit code(-3)Please help me to solve this.
    Edited by: Manikanda Prabhu on Apr 23, 2013 5:29 AM

Maybe you are looking for

  • Win 8 CP in bootcamp snow leopard bootcamp 3.0

    So happy to have managed to install Win 8 CP so I thought Id share: Hardware: Mid 2010 Macbook Pro 15" i5 Snow Leopard 10.7 Bootcamp 3.0 1. Download Win 8 CP iso 32 (tried x64 first but got error code 0x80070570 - I also re-partitioned from 40 to 30

  • Finacial budget reporting

    Hi SAP Gurus , I Have a query from the Client with regards to finacial budget reporting He wants a FINANCIAL BUDGET REPORT per contractor/vendor rather than FINANCIAL BUDGET REPORT per cost centre , He requires per contractor/vendor wise rather than

  • Can you highlight only a portion of a playlist?

    Suppose I want to remove the first fifty songs from a 150-song playlist. Not based on keywords or song titles or bands or anything, just the top fifty songs. I can't seem to drag and highlight just a number (any number) of songs. It's either the whol

  • Only way to buy an app is through subscription?

    I have been out of the loop with the adobe software. I have CS5 (photoshop, illustrator, indesign, dreamweaver, bridge, flash, and a few others) for mac. I paid full price, one time, and it came with all of those apps. I'm looking to get Photoshop, L

  • What DO I need to output HD projects to DVD?

    Trying to piece together how I will output HD footage to DVD. Have researched and paged through this forum and as a technophobe can't quite get it..I know FCP7 does have output to basic blu ray...I know toast and encore will get me there, but what do