Answer Posted / sxion045
CREATE VIEW RR(A,B,X) AS
SELECT R.*, ROW_NUMBER()
FROM R;
DELETE FROM RR
WHERE X=20000000;
| Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
Explain the contention situations caused by locks?
Define data page.
What is iseries database?
What is db2 instance?
How does a cursor work?
How do I import a csv file into db2?
What is the syntax for creating a table in the db2 database?
What is the use of predicate?
Explain about cursor stability?
What is a db2 table?
What is load replace in db2?
What is the use of db2 optimizer?
have 3 tables table1, table2 and table3 which contains employee information. table1 is master table, table2 contains emp details like emp no and so on, table 3 contains emp salary. so if any emp leave company between 25th - 30th of every month it has to get updated in tables. but it is not getting updated. What is the reason.
What is bufferpool in db2?
Where can you declare a cursor in a cobol-db2 program?