Mustafa Alauddien

Greenhorn
+ Follow
since Mar 20, 2006
Merit badge: grant badges
For More
Cows and Likes
Cows
Total received
In last 30 days
0
Forums and Threads

Recent posts by Mustafa Alauddien

In your case it is prefarable to create the tables like :

Create table Dept(
Dept_id number,
Dept_name varchar2(20),
CONSTRAINT DEPT_DEPTID_PK PRIMARY KEY (DEPT_ID));

Create table Student(
stud_Id number,
Stud_Name Varchar2(50),
...
Dept_id Number,
CONSTRAINT STUDENT_STUDID_PK PRIMARY KEY (STUD_ID),
CONSTRAINT STUDENT_DEPTID_FK FOREIGN KEY (DEPT_ID)REFERENCES Dept(Dept_id)
);
19 years ago
I am Installing Oracle DV 10g with Real Application Cluster on Windows 2000 server..

I have the documentation from Oracle, and I am following the steps, but when we start configuring the ASM (Automatic Storage Management) the partitions we created are not seen?

for knowledge:
The Storage is handled by SAN (Storage Area Network).
And I am facing failure in the optional tools at the end of the Oracle Cluster Ready Services Installation:
--Oracle Cluster Ready Service Configuration Assistant.
--Oracle Notification Server Configuration Assistant.
--Oracle Private Interconnect Configuration Assistant.

I hope someone can find me an answer for this.
Regards,
Mustafa.
19 years ago
I am working on a project that needs instalation for Oracle 10g RAC on windows 2000 NT.

I have all the documents and support needed, but for Oracle 9i.

I need the setup for the RAC configuration, or documents if available.
I searched for it in oracle but the ones available is only for LINUX.

I will appreciate it if you can help.

Regards,
Mustafa.
19 years ago