What is IMAGECOPY ?

Answer Posted / guest

Image copy is used to take the back up of the table after a
bulk update or insert. this can be used during recovery.
not sure if its a utility or function.

Is This Answer Correct ?    29 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is reorg?

627


What is difference between isnull and coalesce?

625


what is db2 restart?

1701


How do I import data from excel to db2?

621


What is the physical storage length of timestamp data type?

650






What is the difference between spufi and qmf?

647


What are the 2 sqlcodes that are returned?

650


What is netezza database?

582


What is the use of reorg in db2?

615


Mention some fields that are a part of sqlca.

609


Are views updateable?

650


what is utility for parm lib

1893


What is the default page size of buffer pools?

655


What is check constraint in db2?

619


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.

2161