Answered step by step
Verified Expert Solution
Question
1 Approved Answer
I am not getting the input for my code, the procedure compiled but i am not getting any result what I supposed to see, Please
I am not getting the input for my code, the procedure compiled but i am not getting any result what I supposed to see, Please take a look at my code and fix it Thank you,
SET SERVEROUTPUT ON;
CREATE OR REPLACE PROCEDURE generatejobalerts
vjobid IN NUMBER,
vtimestamp IN TIMESTAMP
AS
Cursor to find the job post and check if it is active
CURSOR curjobpost IS
SELECT mindegree, minyearsworkexp, jobid
FROM jobpost
WHERE jobid vjobid AND jstatus ;
Cursor to find job seekers who meet the degree and work experience requirements
CURSOR curjobseekers
pdegree NUMBER,
pexperience NUMBER
IS
SELECT jsaccid, atusername
FROM jsaccount js
JOIN accountt at ON jsaccid ataccid
WHERE degree pdegree AND numyrswrkxp pexperience;
Variables to hold job requirements
vmindegree NUMBER;
vminyearsworkexp NUMBER;
vjobpostid NUMBER;
Variables for checking skills
vskillcount NUMBER;
flag INT;
BEGIN
OPEN curjobpost;
FETCH curjobpost INTO vmindegree, vminyearsworkexp, vjobpostid;
IF curjobpostNOTFOUND THEN
DBMSOUTPUT.PUTLINEInvalid job post ID;
CLOSE curjobpost;
RETURN;
END IF;
Loop through all qualified job seekers
FOR rjobseeker IN curjobseekersvmindegree, vminyearsworkexp LOOP
flag :;
Check each required skill and level
FOR rskill IN
SELECT jsskid, jssklvl
FROM jobskills js
WHERE jsjobid vjobpostid
LOOP
SELECT COUNT
INTO vskillcount
FROM appskills aps
WHERE aps.accid rjobseeker.accid AND aps.skid rskill.skid AND aps.sklvl rskill.sklvl;
IF vskillcount THEN
flag :;
EXIT;
END IF;
END LOOP;
IF flag THEN
If all conditions are met, print and insert into message table
DBMSOUTPUT.PUTLINEA job post vjobpostid is available and you are qualified to apply';
INSERT INTO message mid appid, mtime, mbody
VALUES messageseq.nextval, rjobseeker.accid, vtimestamp, 'A job post vjobpostid is available and you are qualified to apply';
END IF;
END LOOP;
CLOSE curjobpost;
END;
BEGIN
generatejobalertsvjobid vtimestamp SYSTIMESTAMP;
END;
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started