what is the process of precompiler?

Answer Posted / guest

the process of precompiler is separate tha cobol,db2 staments.

Is This Answer Correct ?    8 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

If the cursor is kept open followed the issuing of commit, what is the procedure to leave the cursor that way?

694


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.

2141


What is dclgen (declaration generator)?

592


What is cascading rollback?

613


What is commit in db2?

587






How do you find the maximum value in a column in db2?

642


Can we delete records from view?

553


Mention the various locks that are available in db2.

609


What is a db2 schema?

756


Why do chiropractors use drop table?

649


How to take backup of table in db2?

591


What is a dbrm in db2?

572


What is meant by explain?

654


Which is faster delete or truncate?

669


How can you count the number of rows from a table tab?

627