Skip to Main Content

Database Software

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Multiple OCR location for multiple different RAC installation in single box?

1038342Mar 13 2014 — edited Mar 13 2014

Gooday,


We are going to migrate a 10gR2 RAC env to a server with 11gR2 RAC installed.
Currently the issue/question we have is the reference of /etc/oracle/ocr.loc to OCR.
11gR2 OCR is on ASM and 10gR2 OCR going to be on raw devices, but we only have one ocr.loc which only points to a single OCR.


So is it possible to have multiple ocr.loc, so that 10g and 11g can look for their own correct ocr location? Or any other solution to this? Thanks


Example: Currently ocr.loc is pointing to 11gR2 OCR which resides in ASM
[oracle@csixdb1 ~]$ cat /etc/oracle/ocr.loc
ocrconfig_loc=+SYSTEM
local_only=FALSE


OS is RHEL 5.8 x86_64


Comments

Narayan
HI user,

I think you mean the multi-Scene Interface , if so then In javafx you can change many scenes in a single Stage so that you can swap those scene. All things in the JavaFX is customizable.

Simple going code:
private Scene s1,s2;
private Stage stage;

public void start(Stage stage) {
	this.stage = stage;
	s1 = new Scene(panel1); //Contains the first window element
	s2 = new Scene(panel2)  //Contains the second window elements
	stage.setScene(s1);
}


//Anywhere in the code after certain condition matches in existing class
this.stage.setScene(s2); //this code changes the scene of your main program Stage/Window
For more about this you can head toward the Stage and Scene API

Thanks
Narayn
986307
Hi Narayan,

In your example there is only one scene visible at time.

What I'm looking for is JavaFX version of Swing JDesktopPane which can serve as container for individual "child" JInternalFrames frames.
If you minimize child frame, icon of it is located on the bottom of the container pane instead of Windows task bar.
You can have several child frames and they can overlap each other. You cannot move child frame out of the container.

http://en.wikipedia.org/wiki/Multiple_document_interface

http://docs.oracle.com/javase/tutorial/uiswing/components/internalframe.html
986307
There is an old thread about JDesktopPane here: 10057351

Using Netbeans or Eclipse platform only for this purpose sounds a bit heavy solution.
Narayan
Hi user,
Currently there is nothing like that in JavaFX internal API. But you can use third party free library like JFXTras.
They already have the VFXWindow class which helps to run the multiple window inside the window like the JInternalFrame of Swing.

Or Alternatively you can even make the custom as well. It's all about the Layouts and the Node. :)


-------------
Links to the VFXWindows library:
- http://jfxtras.org
- http://www.youtube.com/watch?v=QH_A9rWc4zg


Thanks
Narayan
JAVA_AGM

HI

Can u please send me the implementaion details of MDI using swing in javafx.

It will be helpful for me.

1 - 5
Locked Post
New comments cannot be posted to this locked post.

Post Details

Locked on Apr 10 2014
Added on Mar 13 2014
3 comments
185 views