What can the SET option of the Repair Utility accomplish?

Answer Posted / s

To reset pending flags on tablespace
SET NOCHECKPEND

Is This Answer Correct ?    2 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What types of tables are there in the db2 database?

654


How do I delete a table in db2?

732


What are bind parameters in db2?

691


What is the use of db2 optimizer?

694


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.

2268






For a db2 column that is being defined as decimal (11, 2), discuss the cobol picture clause.

750


Is it possible using max on a char column?

703


What is innodb buffer pool?

641


Is schema the same as database?

718


Define buffer pool.

706


How can the duplicate values be eliminated from db2 select?

729


Where do you specify them?

770


Is db2 free?

765


before altering a table is it necessary to lock ? if lock what is it ? how to do ? ifi want to lock a table what is that command ?

1808


Which isolation level provides highest data integrity?

675