If I have a view which is a join of two or more tables, can
this view be updatable?

Answer Posted / guest

If view has join that time view can not be updatable.

Is This Answer Correct ?    3 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Where can you declare a cursor in a cobol-db2 program?

604


If anyone has IBM Certification Dumps pls forward to me & also let me know what are the Certification Codes that are available in DB2

1580


What is db2 bind?

640


Mention data types used in db2 ?

679


How can you do the explain of a dynamic sql statement?

637






What is a buffer in memory?

600


What is concurrency?

711


How to rename a table in DB2 ?

639


What is load replace in db2?

560


What is cobol db2?

570


What does sqlcabc has?

633


Why cursor is used in db2?

575


What does db2 mean?

588


What is the difference between plan and package in db2?

576


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