Answer Posted / harsha
Working-Storage Section.
01 WS-FIELD.
49 WS-FIELD-TEXT PIC X(40).
49 WS-FIELD-LEN PIC S9(4) COMP.
PROCEDURE DIVISION.
MOVE +45 TO WS-FIELD-LEN.
MOVE 'UPDATE TAB1
SET ----=:----- WHERE ---=:----'
TO WS-FIELD-TEXT.
EXEC-SQL
EXECUTE IMMEDIATE:WS-FIELD
END-EXEC.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What are packages in db2?
What is syscat in db2?
What is alias in db2?
How can you do the explain of a dynamic sql statement?
How can you validate Sql errors during cursor operation in db2 pgms and where do you code?
List some fields from sqlca?
Which isolation level provides highest data integrity?
What is a db2 package?
What is difference between isnull and coalesce?
Explain about rct in db2?
DB2 can implement a join in three ways using a merge join, a nested join or a hybrid join. Explain the differences?
What is the difference between oracle and db2?
What is the role of the data page in the db2 database?
in my project..TEST is db2 8.1 version In PROD it is 7.1 if i do REORG in TEST.. can I use the same REORG jcl with out modification in PROD region (this is DB2 8.1 )? if not, what modification i need to do in my REORG control card?
Is the primary key a clustered index?