What is the COBOL picture clause for a DB2 column defined
as DECIMAL(11,2)?
Answers were Sorted based on User's Feedback
Answer / pradeep
it is s9(m-n)v9(n) comp-3 in this case m=11, n=2
ie s9(9)v9(2) comp-3
| Is This Answer Correct ? | 30 Yes | 4 No |
PIC S9(9)V99 COMP-3.
In DECIMAl(11,2), 11 indicates the size of data type and 2
indicates the precision.
| Is This Answer Correct ? | 1 Yes | 0 No |
What is null in db2?
Is it possible to alter a table – for example adding a column, when another user is accessing or updating some columns?
How does coalesce work?
What is cursor stability?
What is runstats utility in db2?
What is the maximum number of tables that can be stored on a Partitioned Table Space ?
How can you validate Sql errors during cursor operation in db2 pgms and where do you code?
What is precompiler in db2?
What is the meaning concurrency in the db2 database?
how can you copy records present in a flat physical file to a database file(physical file).please explain in rpg400 with a simple example
What is a subselect? Is it different from a nested select?
What is usage pointer in cobol?