Click here to Skip to main content
15,886,798 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Dear All,
I need urgent solutin for the given assignment at college,I'm new learner therefore please help in this concern.I'll really appreciate you if you do any kind of help me in this concern

XML
PART-II: MCS-043
Question 1:
(a) Create an appropriate database using Oracle for a study centre management system. (Perform Normalization till the required levels)
(10 Marks)
(b) Perform following queries using SQL:
(5 Marks)
(i) Find the name of the programmes those are been activated in the given study centre.
(ii) Find the no of students in BCA programme for the current year.
(iii) Display the corresponding Regional Centre Code if the study centre code is given.
(iv) Display the list of all the academic counsellors of MCA programme.
(v) Display the total no. of assignments received in the current session for the MCSL-045 course.
(c) Write appropriate triggers, exceptions and functions for the above study centre management system database schema and describe them briefly.
(5 marks)
Posted
Updated 26-Sep-12 19:17pm
v3

This is not a question! This is the assignment. And we don't do you work for you; and this is because we help people, really help, and having your work done by others is not really helpful.

Our chances to learn something or get essential experience are somewhat limited, because we usually have a lot of other things to do, and just because our life is too short. Don't miss a chance!

—SA
 
Share this answer
 
Please stop posting your homework assignments, do some work and if you get stuck ask specific questions.
 
Share this answer
 
Quote:
Create database MCAAM;
Use MCAAM;
1 NF Normalization:
Create table MCAAssignmentMangement(
Student_enrolment bigint,
Student_name varchar(100),
Student_marks int,
Assignment_id varchar(100),
Assignment_name varchar(100),
Assignment_code varchar(50),
Assignment_counsellor varchar(100),
Semester int,
Counsellor_Evaluating int,
Counsellor_name varchar(100),
Studycenter_id int,
Studycenter_name varchar(100)
);
select * from MCAAssignmentMangement;

2nd NF Normalization:
Create Table MCAAssignmentDetials(
Student_enrolment bigint,
Student_marks int,
Assignment_name varchar(100),
Assignment_code varchar(50),
Assignment_counsellor varchar(100),
Studycenter_id int,
Studycenter_name varchar(100)
);
3Rd NF Normalization:
Create table AssignmentDetials(
Student_enrolment bigint,
Student_marks int,
Assignment_code varchar(50),
Assignment_counsellor varchar(100),
Studycenter_id int
);

i)
SELECT COUNT(Assignment_code)
FROM MCAAssignmentMangement
WHERE Assignment_code>0;

ii)
Select Assignment_counsellor from MCAAssignmentMangement
Where Counsellor_Evaluating>1;

iii)
Select Student_enrolment, Student_name from MCAAssignmentMangement where Student_marks > 40 AND Semester = 1;
iv)
Select Student_enrolment, Student_name from MCAAssignmentMangement where Student_marks >= 90% AND Assgnemt_code=MCS011;

v)
SELECT COUNT(*)
FROM MCAAssignmentMangement
WHERE Assignment_code = MCSL045;
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900