Oracle 11.2 default instance volume is 50 GiB - How can I increase size?

Hi,
I created an ebs Oracle 11.2 instance that defaulted to a volume size of 50GiB.
Does anyone know how to increase the volume size to 300GiB?
This didn't work:
I created another volume (300Gib), attached it to the instance, mounted the drive, but when I ran the Oracle install script - that drive didn't show up:
Select a disk device to store your datafiles and redo logs on:
ID DEVICE_NAME
[0] Refresh List
[1] Use Default
[2] /dev/sdc1
Thanks.

I didnt have any luck with the scripts it comes with the AMI so I just cut and paste of what I need heres the script I use.
You can mount the 300G to /u02 or whatever you want
and change the ORACLE_SID to <YOUR_SID_NAME>
Also you have to run it as user oracle instead of Root
and make sure that the ORACLE_HOME is correct
ORACLE_SID=<YOUR_SID_NAME>
SID=${ORACLE_SID}
GLOBAL_NAME=${SID}
SYS_PWD=s
SYSTEM_PWD=s
DBSNMP_PWD=s
SYSMAN_PWD=s
DBF_MOUNT=/u02
FRA_MOUNT=/u02
ORACLE_HOME=/u01/app/oracle/product/11.2.0/db_1
DBCA_TEMPLATE_DIR=${ORACLE_HOME}/assistants/dbca/templates
DBCA_TEMPLATE_NAME=${DBCA_TEMPLATE_DIR}/General_Purpose.dbc
ORACLE_OWNER=oracle
DBCA=${ORACLE_HOME}/bin/dbca
SQLPLUS=${ORACLE_HOME}/bin/sqlplus
EMCTL=${ORACLE_HOME}/bin/emctl
DB_FILE_DIR=${DBF_MOUNT}/oradata
RECO_AREA=${FRA_MOUNT}/flash_recovery_area
CHARSET=AL32UTF8
export ORACLE_SID=${SID}
mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}
mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
mkdir -p ${DBF_MOUNT}/admin/${ORACLE_SID}/adump
export EMKEY_LOCATION=${DBF_MOUNT}/admin/${ORACLE_SID}/dbs
echo
echo "Please wait while your database is created..."
echo
${DBCA} -silent -createDatabase -templateName ${DBCA_TEMPLATE_NAME} -gdbName ${GLOBAL_NAME} -sid ${SID} -sysPassword ${SYS_PWD} -systemPassword ${SYSTEM_PWD} -dbsnmpPassword ${DBSNMP_PWD} -sysmanPassword ${SYSMAN_PWD} -emConfiguration LOCAL -storageType FS -datafileJarLocation ${DBCA_TEMPLATE_DIR} -sampleSchema true -datafileDestination ${DB_FILE_DIR} -recoveryAreaDestination ${RECO_AREA} -characterSet AL32UTF8
RV=$?
if [ $RV -ne 0 ]
then
echo
echo "There was a problem creating your database.  Please review the log file shown above."
else
${EMCTL} stop dbconsole
${SQLPLUS} /nolog << EOF
${SQLPLUS} /nolog << EOF
connect / as sysdba
alter system set audit_file_dest='${DBF_MOUNT}/admin/${ORACLE_SID}/adump' scope=spfile;
EXEC DBMS_XDB.SETHTTPPORT(8080);
ALTER USER anonymous ACCOUNT UNLOCK
@${ORACLE_HOME}/apex/.apxxepwd_custom.sql ${APEX_PWD}
shutdown immediate
exit
EOF
mv $ORACLE_HOME/dbs/spfile${ORACLE_SID}.ora ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
mv $ORACLE_HOME/dbs/orapw${ORACLE_SID} ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/.
ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/spfile${ORACLE_SID}.ora ${ORACLE_HOME}/dbs/.
ln -s ${DBF_MOUNT}/admin/${ORACLE_SID}/dbs/orapw${ORACLE_SID} ${ORACLE_HOME}/dbs/.
${SQLPLUS} /nolog << EOF
connect / as sysdba
startup mount
alter database archivelog;
alter database open;
exit
EOF
${SQLPLUS} /nolog << EOF
connect sysman/${SYSMAN_PWD}
@/home/oracle/scripts/osbws/submit_osb_cloud_backup.pls
exit
EOF
${EMCTL} start dbconsole
echo
grep ORACLE_SID /home/oracle/.bash_profile > /dev/null 2>&1
if [ $? -eq 0 ]
then
echo "Not adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
echo "because ORACLE_SID is already set in that file."
else
echo "Adding ORACLE_SID=${SID} to /home/oracle/.bash_profile"
echo "export ORACLE_SID=${SID}" >> /home/oracle/.bash_profile
fi
OH="\/u01\/app\/oracle\/product\/11.2.0\/db_1"
cp /etc/oratab /tmp/oratab.bak
sed "s/${ORACLE_SID}:${OH}:N/${ORACLE_SID}:${OH}:Y/" /tmp/oratab.bak > /etc/oratab
echo
echo "The database was created successfully."
fi
echo
echo
/home/oracle/scripts/setup_osbws.sh
echo
echo "You can connect to your database as follows:"
echo
echo "Command Line: sqlplus sys/<your-password> as sysdba"
echo "Enterprise Manager Database Console: https://${ORACLE_HOSTNAME}:<port number>/em e.g. https://${ORACLE_HOSTNAME}:1158/em"
echo "Oracle Application Express (APEX): http://${ORACLE_HOSTNAME}:<port number>/apex e.g. http://${ORACLE_HOSTNAME}:8080/apex"
echo "Actual ports numbers can be found in ${ORACLE_HOME}/install/portlist.ini file. If this is the first database being created on this machine, the above example URLs should work."
echo
echo "Thank You for choosing Oracle Database on EC2."Edited by: vxwo0owxv on May 11, 2011 1:01 PM

Similar Messages

  • How can I increase the storage capacity in Linux for installing Oracle 11g?

    Hi all,
    I've been searching in Internet information about how to increase the storage capacity of a Linux machine, so that it can help me with my problem without success. I tried to execute some command lines encountered in some tips in forums, but no one works.
    I want to install an Oracle 11g database, which needs 4 GB minimal for the installation. I can not continue with the installation because of this problem.
    I use a VMWare virtual machine, which I increased over its settings to 160 GB, but not its file systems or whatever in the machine.
    I did this:
    [root@localhost ~]# df -h
    Filesystem Size Used Avail Use% Mounted on
    /dev/sda3 18G 15G 1.9G 89% /
    /dev/sda1 190M 12M 169M 7% /boot
    none 506M 0 506M 0% /dev/shm
    /dev/hdc 699M 0 699M 100% /media/cdrom
    As far I understand the bigger storage capacity is used by the file system /dev/sda3. But what about the rest, I mean the 140 GB?. I've already increased the storage capacity over the settings. How can I tell the machine "please use the remaining 140 GB for the installation of the Oracle DB and other needed installations?.
    How can I increase here what?. Disk? File system? Volume Group? It can not be so difficult, can it?
    There are no volume groups in the machine:
    +[root@localhost /]# vgdisplay+
    +No volume groups found+
    Linux is too complicated. Unfortunately I have to do that in Linux :-(
    Can someone help me? I sit here since long hours without finding a solution :-(

    thanks for your answers.
    To Dude:
    You can address the problem in a number of different ways, but please post your version of Linux and provide more information about your current partitions
    The Version of Linux is Linux Red Hat Enterprise 5.
    Open Logical Volume Management from the System Administration menu.
    Select your volume from the logical view, edit properties and then use the slider to set your volume size, or click "remaining" to extend your partition.
    I've already opened the LVM from the System Administration menu, but there is no possibility to see the volume groups, because there is no one. There is no tabs like Volume Groups or something like that...
    I would try the procedure described above your answer and write you again. I hope it works...I will write you back in a few minutes...

  • I have created a folder and album where I've renamed the images, yet when I export them, the default to their original numbering. How can I block that so I can keep the newly renamed images as I've renamed them?

    I have created a folder and album where I've renamed the images, yet when I export them, the default to their original numbering. How can I block that so I can keep the newly renamed images as I've renamed them?

    As TD pointed out:
    OT

  • How can i increase sga size in oracle 10g

    Hello friends
    how can i increase my sga size in oracle 10g
    Regards
    Vicky
    Edited by: Vignesh Chinnasamy on 31-Jul-2012 02:28

    HI
    **SQL> Show parameter sga ;**
    NAME                                 TYPE        VALUE
    lock_sga                             boolean     FALSE
    pre_page_sga                         boolean     FALSE
    sga_max_size                         big integer 2G
    sga_target                           big integer 2G
    **SQL> show parameter memory;**
    NAME                                 TYPE        VALUE
    hi_shared_memory_address             integer     0
    shared_memory_address                integer     0
    **[root@mte ~]# ulimit -a**
    core file size          (blocks, -c) 0
    data seg size           (kbytes, -d) unlimited
    file size               (blocks, -f) unlimited
    pending signals                 (-i) 1024
    max locked memory       (kbytes, -l) 32
    max memory size         (kbytes, -m) unlimited
    open files                      (-n) 1024
    pipe size            (512 bytes, -p) 8
    POSIX message queues     (bytes, -q) 819200
    stack size              (kbytes, -s) 10240
    cpu time               (seconds, -t) unlimited
    max user processes              (-u) 278528
    virtual memory          (kbytes, -v) unlimited
    file locks                      (-x) unlimited
    *[root@mte ~]#*

  • How can i increase the volume of 6plus when make phonecalls

    How can I increase the volume when I make the phonecalls. I already tried the normal method like press the slide volume button but it doesn't work.Is there any other methods to solve the problem?

    Did you try that while on a phone call? Also there are different volumes for different devices. If you have your earbuds in and set a volume that will change the volume for when your earbuds are in. If you have a bluetooth headset you can set a volume for that.

  • I recently changed my username n password. Now that I'm trying to update my apps, it still default at my old username. How can I change it to new username?

    I recently changed my username n password. Now that I'm trying to update my apps, it still default at my old username. How can I change it to new username?

    Sorry, you can't. Apps are forever tied to the Apple ID used to originally obtain them. They cannot be updated using any other Apple ID, nor can they be transferred to another Apple ID. You will have to update them using the ID used to originally obtain them.

  • How can I adjust size of default action frames

    Hi, How can I adjust size of default action frames they are very thin.  I have tried double clicking on that part I think it is in the actions but can only adjust the drop shadows etc not the actual size of the frame ie like in the wooden frame.
    hop you can help

    I think I get what you meant now …
    The »Transform Current Layer«-step in »Frame Channel – 50 pixel« might be the one you want to edit (»Toggle dialog on/off« for example or replace it with a newly recorded different transformation).

  • When I set my screen saver to iLibrary it defaults to national geographic,why and how can I stop it

    when I set my screen saver to iLibrary it defaults to national geographic,why and how can I stop it

    Back up all data. Quit System Preferences if it's running.
    Triple-click anywhere in the line below on this page to select it, then copy the text to the Clipboard by pressing the key combination command-C:
    ~/Library/Preferences/ByHost
    In the Finder, select
              Go ▹ Go to Folder...
    from the menu bar. Paste into the box that opens (command-V), then press return. A folder named "ByHost" should open. Look inside it for a file with a long name that begins "com.apple.screensaver". There may be several such files. Move them all to the Trash.
    Log out or restart the computer. Test. If the problem is resolved, empty the Trash and recreate your settings in the Screen Saver tab.

  • I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    I made a project with multiple tracks and had it all panned and mixed.  Now it's only playing in the right speaker.  Not even regestering a left side in the master volume?  What happened, how can I get both sides back?

    Thank you for that info.
    For video, the codec is MPEG-4 Video (XVID) and for audio it says MPEG Audio Layer 1/2/3 (mpga).
    There are two issues with that file:
    The first is the Xvid CODEC (not meant for editing), and then the MPEG Audio/MPGA. I would convert that file, to something that is more editable.
    Good luck,
    Hunt

  • Ring volume and call volume goes down automatically, how can i fix it?

    Ring volume and call volume goes down automatically, how can i fix it?

    Like seriously, please help if you have any idea

  • When im facetiming with someone and im watching a youtube video at the same time, the volume for the youtube video is lowered and the facetime volume stays the same, how can i change that?

    When im facetiming with someone and im watching a youtube video at the same time, the volume for the youtube video is lowered and the facetime volume stays the same, how can i change that?

    Have you ever even used skype on an iphone or ipod?  We tried it and there is no way to type to each other while you are video chatting.  You can do the typing during the video on a COMPUTER, but not on an iphone or ipod.

  • IPad does not 'ring' when FaceTime call is coming in. Volume is up..How can I fix this ?

    My iPad does not 'ring' when a FaceTime call is coming in..the volume is up...
    How can I fix this?

    It might be a good idea to reset network settings & reboot your modem:
    Open Settings->General->Reset->Reset Network settings.  You will have to enter your wifi passwords again.
    Also go to Settings->Safari->Clear History & a Website data.

  • How can I increase volume when burning to CD  ???

    After I download i-Tunes to my Windows XP computer, I then burn to CD to play in my car. However, the volume of the CD songs is limited. I want louder playbanck. How can I burn songs wiuth "increased" audio volume?
    Dell Dimension   Windows XP  

    I have the same question. Have you heard from anyone on this subject yet. I am going to try burning without the "soundcheck" option to see if that helps, although I suspect that will put the volume in the car all over the map. My theory is that the program has no option other than to limit the volume of the louder recordings to match the volume of the quieter ones. We'll see

  • How can I increase the volume of my text alerts without increasing call volume??

    The alerts that are pre-programed on my phone for text alerts are very quiet.  When I turn the volume up so that I can hear them then my call volume is embarrassingly loud.  I have tried to get new tones in the store but they all seem to download to my ringtone - not text tones.  I have even purchased (from the Verizon store) tones that are for texts, but again, they download into my call ringtones.  Any suggestions would be great since I am a big texter and am getting very frustrated because of missing so many.

        @Halon,
    I know how you feel! Text messaging is my main means of communication so I use it all the time. I definitely don't want you missing any important text messages because you can't hear the alert.
    Keep in mind that the volume level will increase or decrease the same for both calls and text alerts. You may notice that the ring tones options for the text messages are not as loud as the ones for calls. Unfortunately, there is no way to increase the volume for the text alerts without increasing the volume for the call alerts as well.
    One thing you can try is turning in the Vibrate mode so the phone vibrates also when you receive a text messages. Visit http://vz.to/1aflRJ0 for steps.
    Keep me posted if you need further assistance.
    JohnB_VZW
    Follow us on Twitter @VZWSupport

  • How can I increase the speaker volume on my iphone

    I have a 3G iphone. After 3 trouble-free days the speaker volume dropped drastically. I can barely hear what is being said. The unit still works well on a handsfree basis. A colleaugue had the same problem but the fault corrected itself. I have of course tried the toggle switches at the side of the phone. Any ideas?
    jim

    I went into the Apple store yesterday for the same issue. My speakerphone when being used in my car is barely audible. I can't even hear it if I hold it to my ear...but I'm in a convertible. When I'm in my SUV, it's not much better though. In fact, when placing a call, I can barely hearing it dialing. However, I tested all the Iphones on display in Apple and the speakerphones were very low too as was the dialing mode. They agreed that the speakerphone is low but it is the way it works. They suggested using an earpiece, which I hate. I am using a Motorokr T505 speaker box in my car for now. The speakerphone is okay if I"m in an absolutely quiet environment, which is just not the case when driving.

Maybe you are looking for

  • Oracle9i Personal edition on XP pro

    I uninstalled the working Oracle9i standard edition and removed all the registry entries and folders. When I try to reinstall, in the universal installer navigation window destination path is empty. If I give it manually and click next, it says probl

  • Problem with interface - when send the data for PA0002

    Hi Gurus,     I am interfacing employees data from one system to another system  with all the PA infotypes. we are using the fuction module " HR_MAINTAIN_MASTERDATA " to upload the master data. Here the problem is, when we send the data - in destinat

  • Error mesage related to storage type

    Hi Iam PP guy and getting following message while making container full in Kanban board PK13n Storage type  xxx not suitable as an interface (SU management is active)

  • Sorting Clips in Thumbnail View ????????

    I think on this one I MUUUUUST be missing the obvious... I cannot find any way to sort my clips once I enter thumbnail/icon view ??? I can sort in list view but not in icon view ????

  • 2 questions to clarify

    I've heard / read conflicting info on these, so hoping you all can clarify. The company I work for is considering switching to creative cloud, however, are unsure of the following: 1.) Will the software still work if internet connections go down? 2.)