A Table feild is declared as Decimal(7,2). I want to insert
the decimal in to this column thru cobol-db2 program.
How should I declare my local input file variable
or any suggestion?

Answer Posted / prabhakar

u can declare in application program(cobol)
01 dec pic 9(5).9(2). is equal to dec(7,2)

Is This Answer Correct ?    11 Yes 5 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Who uses db2?

568


What happens in bind step in a db2 program?

560


What is a page in db2?

602


What is the physical storage length of the data types date, time, and timestamp?

595


What is null indicator in cobol db2?

576






In an sql table that is embedded, what is the procedure to retrieve rows that are part of a db2 table?

631


How does a cursor work?

553


Which command is used to connect to a database in DB2 ? Give the Syntax.

592


How do I add a column in db2?

585


What is access path in db2?

556


SET is the ANSI standard for variable assignment, SELECT is not. SET can only assign one variable at a time, SELECT can make multiple assignments at once. If assigning from a query, SET can only assign a scalar value. If the query returns multiple values/rows then SET will raise an error. SELECT will assign one of the values to the variable and hide the fact that multiple values were returned (so you'd likely never know why something was going wrong elsewhere - have fun troubleshooting that one) When assigning from a query if there is no value returned then SET will assign NULL, where SELECT will not make the assignment at all (so the variable will not be changed from it's previous value) As far as speed differences - there are no direct differences between SET and SELECT. However SELECT's ability to make multiple assignments in one shot does give it a slight speed advantage over SET.

2143


What is concurrency?

702


Which component is used to execute the sql statements?

611


How to resolve deadlock issue

17932


Why do we need reorg in db2?

555