What is sqlcode -811?

Answer Posted / jdriley

Is the SQLCODE returned when your singleton select
statement returns/retrieves more than one row of data.

Is This Answer Correct ?    68 Yes 7 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How do we specify index to include or not during bind process.

1886


Is db2 a mainframe?

808


What is host variable?

839


Why select is not preferred in embedded sql programs?

969


What is the use of predicate?

814


Explain about dbrm.

813


Mention the various locks that are available in db2.

810


Why do chiropractors use drop table?

898


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.

2426


What is blu acceleration in db2?

856


What is cursor stability in db2?

1080


Explain in detail about buffer manager and its functionalities?

809


Can one database have multiple instances?

831


How can we retrieve the total number of records in RPG & CLLE?

407


What is cursor in dbms?

852