What if , we failed to mentioed null indicator in sql
select query , that may retrieve null value ?
Answer Posted / santy
it will retrive the garbage value.
| Is This Answer Correct ? | 0 Yes | 11 No |
Post New Answer View All Answers
run jcl for cobol+db2 pgm?.. //jobcard //step001 exec pgm=ikjeft01 //systin dd * DSNSYSTEM(--------) RUN PROGRAM(MYPGMNAME) PLAN(-----), LIB(-------), PARMS(------) /* WHAT WILL U GIVE INSIDE THE BRACKETS... WHAT IS PLAN,PACKAGE,BIND?..PLAN N PACAKGES ARE GENERATED BY ?...
What is sqlca’s maximum length?
I have a subprogram B calling from mainprogram A.I have opened a cursor in A ,Can i fetch the same cursor in subprogram B , If yes , Please explain the reason?
How and when does the db2 enforces the unique key?
What is iseries database?
How do I connect my db2 database to ibm?
What is the connection string to connect to the DB2 Database ?
Can we delete records from view?
How do I delete a table in db2?
Mention the length of physical storage of the given data types of db2 – date, timestamp, time
Why do we use cursor?
How many databases can be created inside an instance in db2 ?
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.
Is db2 a mainframe?
Can one database have multiple instances?