I don't know why you always talk about formatting.
When you have productive node AIX1 and it's backuped by a standby node AIX2 of which AIX2's storage is a mirror which is at normal times read-only from AIX2 side, then you just don't touch it from AIX2 as long as there is no crash or maintenance needed.
Quote:
Suppose disaster recovery occurs, mirror is manually broken : LUN is getting read write attribute and of course Data are already present on the LUN.
HOW do I proceed to mount this LUN to my AIX WITHOUT FORMATING ??
|
You do not FORMAT. There is no such thing to do that at all. Get rid of that word!

If you keep your cluster maintained, normally AIX2 would know at least all VGs AIX1 knows. If not you can, as vbe already said, just importvg the VGs from the now read-write available storage on AIX2. Also you can maybe just varyonvg them.
Forget that word "FORMAT"!
When storage is available and VGs vary on at AIX2, you can just add a new LV by smit(ty) or mklv + crfs for example.
What we do if a VG changes on one node is, that we get a downtime and varyoffvg it on prod node and just exportvg/importvg it on AIX2 so it also knows/has an up-to-date configuration.
Small hint: There is a switch -L for importvg to learn any changes in configuration compared to what it currently knows; from man importvg:
Code:
-LVolumeGroup
Takes a volume group and learns about possible changes performed to that volume group. Any new logical volumes created as a
result of this command emulate the ownership, group identification, and permissions of the /dev special file for the volume
group listed in the -y flag. The -L flag performs the functional equivalent of the -F and -n flags during execution.
...