cobol-db2 runjcl please?

Answer Posted / shivani

use the utility IKJEFT01
under systin dd *
dsn system()-
plan()-
prog()-
loadlib()
/*

Is This Answer Correct ?    4 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Differentiate between cs and rr isolation levels? Where do you specify them?

580


What are bind parameters in db2?

611


Mention the different locking levels that are available in db2.

643


Comment whether the cursor is closed during commit or not.

670


What is the difference between cursor stability and repeatable read isolation levels?

678






How is the value function used?

600


How connect db2 database to datastage?

761


What is buffer pool and list some of them?

628


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.

2149


What are the 2 sqlcodes that are returned?

635


Cursors can be declared in both working-storage & procedure division, agreed. But is there any difference? If could you please suggest what is the difference

747


Which isolation level provides highest data integrity?

595


What happens in bind step in a db2 program?

565


What is meant by explain?

660


How does a cursor work?

554