What is sqlcode -811?

Answer Posted / bharani

We get error -811, when 'WHERE' criteria in singleton query
matched with multiple rows of a table, it can only fetch
and process one row at a time. Only way to avoid this error
by using cursor concepts.

Is This Answer Correct ?    29 Yes 1 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Define predicate?

645


Can there be more than one cursor open for any program?

662


What is a plan and package in db2?

625


can all users have the privilage to use the sql statement select * (dml)?

642


What is dbrm? What it contains? When it will be created?

595






What are the uses of db2 optimizer?

818


What does db2 stand for?

598


What is host variable?

597


What is database alias db2?

611


by using cursors , we can access particular records from the table based on some condition, i want to delete those selected records, how can we write a query for this in the program?

7518


My sql statement select avg(salary) from emp yields inaccurate results. Why?

643


What is db2? Explain.

606


How to rename a table in DB2 ?

641


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.

2155


What is bind and rebind in db2?

652