can we update the table by using cursors can anyone post
the query?

Answers were Sorted based on User's Feedback



can we update the table by using cursors can anyone post the query?..

Answer / bigben

yes you can
declare cursor using FOR UPDATE option

Is This Answer Correct ?    23 Yes 0 No

can we update the table by using cursors can anyone post the query?..

Answer / diana

Yes you can update the table using cursor....
for eg: if you want to update 3 columns like A,B,C the you
can write as:

Update Table_name
Set A = :Host varaible(value)
B = :Host varaible(value)
C = :Host varaible(value)
where current of C1(Cursor name)

Is This Answer Correct ?    9 Yes 0 No

can we update the table by using cursors can anyone post the query?..

Answer / amar

DECLARE
INT NUMBER:=0;
CURSOR C1 IS
SELECT COL1,COL2 FROM TABLE_NAME;
BEGIN
FOR RC IN C1 LOOP
UPDATE TABLE_NAME SET COL_NAME=RC.COL1,COL_NAME=COL2;
CNT:=CNT+1;
END LOOP;
END;

Is This Answer Correct ?    1 Yes 0 No

can we update the table by using cursors can anyone post the query?..

Answer / siri

suppose we want update ename in emp table using cursor....

declare crsorname cursor for
select * from emp
where dept='d005'
for update of ename....


upate emp
set ename=:ename
where current of cursor

Is This Answer Correct ?    0 Yes 0 No

can we update the table by using cursors can anyone post the query?..

Answer / mee

yes its possible

Is This Answer Correct ?    0 Yes 1 No

Post New Answer

More DB2 Interview Questions

How to check sequence on a table in db2?

0 Answers  


What's the Maximum Length of SQLCA and what's the content of SQLCABC?

2 Answers  


What is dclgen (declaration generator)?

0 Answers  


How to find last record before record through SQLRPGLE?

1 Answers   IBM,


How can tablespace be moved to another dasd volume that is allocated for that tablespace?

0 Answers  






What information can you find in SYSIBM.SYSLINKS table?

1 Answers   TCS,


Mention the length of physical storage of the given data types of db2 – date, timestamp, time

0 Answers  


how to execute qcmdexc in rpgle?plz write code also?

1 Answers   IBM,


Mention the definition of cobol in varchar field.

0 Answers  


how to u check the query is executing or not ?where will u check for sqlcode ?

6 Answers   Infosys,


Differentiate between cs and rr isolation levels? Where do you specify them?

0 Answers  


Mention data types used in db2 ?

0 Answers  


Categories