This part describes the way to implement procedure and cursor as well. I have together described cursor and procedure in a single example. What i have done is when you delete or update a record that record gets deleted from voter table and get inserted in to votertemp table. In procedure what i have tried to do is the deleted record that is currently in votertemp gets deleted from votertemp table and gets inserted back to voter table as it was in its first instance Oracle 1) type ed -> in the sql> command line -> it opens a notepad 2) type the procedure there! create or replace procedure voterundo is cursor votercur is select * from votertemp; id number(5); name varchar2(25); address varchar2(50); age varchar2(3); gender varchar2 (6); dob varchar2(30); begin open votercur; loop fetch votercur into id,name,address,age,gender,dob; exit when votercur%notfound; delete from voter; insert into voter values(id,name,address,age,gender,dob) ; delete from voterte...