how can i pull up a query which was previously stored in qmf
Answer Posted / prabhas
if you know the mainframe user id where you have stored the
query , then give command LIST ALL and press enter it will
show you all the query stored in that user id.
please post the correct answer if i am wrong....
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
What do you mean by rollback?
My sql statement select avg(salary) from emp yields inaccurate results. Why?
Following a db2 update statement, what is the quickest way to compute the total number of updated rows?
What's The Error Code For Unique Index Voilation?
what is the role of the cursor in db2?
What does reorg do in db2?
What is db2 look?
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.
What is the difference between using bind () and rebind () methods of naming class?
Why do we use cursor?
Name the lockable units in DB2?
What is db2 command?
What is a db2 package?
How do I start db2 in windows?
What is dclgen (declaration generator)?