Click here to Skip to main content
15,891,951 members
Home / Discussions / Database
   

Database

 
AnswerRe: can someone find the error please Pin
PIEBALDconsult13-Nov-11 2:01
mvePIEBALDconsult13-Nov-11 2:01 
GeneralRe: can someone find the error please Pin
Member 832305613-Nov-11 2:23
Member 832305613-Nov-11 2:23 
GeneralRe: can someone find the error please Pin
PIEBALDconsult13-Nov-11 2:47
mvePIEBALDconsult13-Nov-11 2:47 
GeneralRe: can someone find the error please Pin
Jörgen Andersson13-Nov-11 8:17
professionalJörgen Andersson13-Nov-11 8:17 
GeneralRe: can someone find the error please Pin
PIEBALDconsult13-Nov-11 17:30
mvePIEBALDconsult13-Nov-11 17:30 
GeneralRe: can someone find the error please Pin
Jörgen Andersson13-Nov-11 20:49
professionalJörgen Andersson13-Nov-11 20:49 
GeneralRe: can someone find the error please Pin
PIEBALDconsult14-Nov-11 1:40
mvePIEBALDconsult14-Nov-11 1:40 
AnswerRe: can someone find the error please Pin
Jörgen Andersson13-Nov-11 8:17
professionalJörgen Andersson13-Nov-11 8:17 
It looks like you're missing the keyword loop after for i in c1 and after for j in c2
Try this:
SQL
DECLARE
        cursor  c1 is select * from dept;
        cursor  c2 is select * from emp;
        s emp.sal % type;
BEGIN
    for i in c1
    loop
        s:=0;
        dbms_output.put_line(‘-----------------------------------------------------’);
        dbms_output.put_line(‘Department is:’║ i.deptno║’Department name is:’║i.dname);
        dbms_output.put_line(‘---------------------------------------------------------’);
        for j in c2
        loop
            if(i.deptno=j.deptno)then
                s:=s+j.sal;
                dbms_output.put_line(j.empno║ ‘ ‘║j.ename ║’ ‘║j.sal);
            end if;
        end loop;
        dbms_output.put_line(‘--------------------------------------------------------’);
        dbms_output.put_line (‘Total salary is:’║s);
        dbms_output.put_line(‘--------------------------------------------------------’);
    end loop;
END;
/

Light moves faster than sound. That is why some people appear bright, until you hear them speak.
List of common misconceptions

QuestionHow to open LDF file of SQL2000 Pin
Cold_Fearing_Bird10-Nov-11 18:52
Cold_Fearing_Bird10-Nov-11 18:52 
AnswerRe: How to open LDF file of SQL2000 Pin
Corporal Agarn11-Nov-11 1:23
professionalCorporal Agarn11-Nov-11 1:23 
AnswerRe: How to open LDF file of SQL2000 Pin
SilimSayo14-Nov-11 15:58
SilimSayo14-Nov-11 15:58 
QuestionData from multiple tables Pin
Manmohan2910-Nov-11 7:25
Manmohan2910-Nov-11 7:25 
AnswerRe: Data from multiple tables Pin
loyal ginger10-Nov-11 8:52
loyal ginger10-Nov-11 8:52 
GeneralRe: Data from multiple tables Pin
SilimSayo10-Nov-11 9:10
SilimSayo10-Nov-11 9:10 
GeneralRe: Data from multiple tables Pin
Manmohan2910-Nov-11 19:16
Manmohan2910-Nov-11 19:16 
GeneralRe: Data from multiple tables Pin
SilimSayo11-Nov-11 7:11
SilimSayo11-Nov-11 7:11 
GeneralRe: Data from multiple tables Pin
Manmohan2911-Nov-11 7:33
Manmohan2911-Nov-11 7:33 
Questiondatabase deployment Pin
murali_utr10-Nov-11 4:08
murali_utr10-Nov-11 4:08 
AnswerRe: database deployment Pin
Corporal Agarn10-Nov-11 4:26
professionalCorporal Agarn10-Nov-11 4:26 
AnswerRe: database deployment Pin
jschell10-Nov-11 8:56
jschell10-Nov-11 8:56 
QuestionMaster.dbo.xp_fileexist in sql Pin
vanikanc10-Nov-11 3:26
vanikanc10-Nov-11 3:26 
AnswerRe: Master.dbo.xp_fileexist in sql Pin
Eddy Vluggen10-Nov-11 10:20
professionalEddy Vluggen10-Nov-11 10:20 
QuestionHeterogeneous Database; What will you do? Pin
AbrahamMOKDAD9-Nov-11 18:58
AbrahamMOKDAD9-Nov-11 18:58 
AnswerRe: Heterogeneous Database; What will you do? Pin
Eddy Vluggen10-Nov-11 10:51
professionalEddy Vluggen10-Nov-11 10:51 
AnswerRe: Heterogeneous Database; What will you do? Pin
Mycroft Holmes13-Nov-11 6:20
professionalMycroft Holmes13-Nov-11 6:20 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.