Operating System - HP-UX
1837509 Members
3731 Online
110117 Solutions
New Discussion

Re: lvextend raw device on Oracle

 
Michael Mac
Occasional Advisor

lvextend raw device on Oracle

Hello all,

Do I need to SHUTDOWN the Oracle database before increase(lvextend) raw device on the same volume group.
e.g

1) lvextend -L 800 /dev/vg02/lv_ora
2) Alter database datafile '/dev/vg02/lv_ora' resize 800M;


Thanks.
5 REPLIES 5
Devender Khatana
Honored Contributor

Re: lvextend raw device on Oracle

Hi,

No shutdown is not required. It can be done online.

HTH,
Devender
Impossible itself mentions "I m possible"
Simon Hargrave
Honored Contributor

Re: lvextend raw device on Oracle

You can do this online without a problem.
TwoProc
Honored Contributor

Re: lvextend raw device on Oracle

Can be done online with no problem. I *would* do a complete hotback first though. Just in case...
We are the people our parents warned us about --Jimmy Buffett
Steven E. Protter
Exalted Contributor

Re: lvextend raw device on Oracle

I would have a cold backup before I did it. Every once in a while lvextend has hung on me. I would hope the machine is current on patches.

The commands you plan to use are fine, and can be run while the database is up. I'm just anal and would try and avoid it and have a cold backup before proceeding.

SEP
Steven E Protter
Owner of ISN Corporation
http://isnamerica.com
http://hpuxconsulting.com
Sponsor: http://hpux.ws
Twitter: http://twitter.com/hpuxlinux
Founder http://newdatacloud.com
Michael Mac
Occasional Advisor

Re: lvextend raw device on Oracle

Thank you for you helps...