What is IMAGECOPY ?
Answers were Sorted based on User's Feedback
Answer / 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 |
It is a utility by using of which we can take the back up
of the tablespace after bulk update or insert operations.
it is generally used for recovery process.
Is This Answer Correct ? | 15 Yes | 3 No |
Answer / prashanth
We Can take the imagecopy of tablespaces as well. we can do
so by using COPY Utility.
Is This Answer Correct ? | 12 Yes | 2 No |
Answer / srinivasa yadav
WHEN LOADING LARGE AMOUNT OF DATA INTO DB2 TABLE AND AGAIN
TRYING TO LOAD THE DATA THEN THE TABLE SPACE WILL GO IN TO
THE COPY PENDING STATUS.
IT WILL ARISE AN ABEND -904
-904 :- RESOURCE UNAVAILABLE
TO RESOLVE:- AFTER LOADING THE DATA NEED TO TAKE IMAGE COPY
AND AGAIN TRY TO LOAD THE DATA.
IMAGE COPY:- IT IS USED TO TAKE BACK UP OF DATA.
//SYSTIN DD *
COPY AAAGENDB.AAAGENTS
INTO DSN=ALL70.POL_SIMP.BASE(+1)
/*
//
Is This Answer Correct ? | 8 Yes | 3 No |
Answer / thiruvenkata varaga moorthy
After a Bulk Load of the Table or Table Space by means of a
DB2 Load Utility, we need to go for an Image Copy so as to
restore the system in case of some unexpected situations.
Generally, DB2 system itself will expect such an imagecopy
and will prompt the message in the output saying 'Image
Copy Required', 'Table Space Remains in Copy Pending State'.
It is upto the wish of the programmer either to go for an
Image Copy or to cancel the Copy Pend state by means of the
Repair set.
Is This Answer Correct ? | 8 Yes | 4 No |
What is the syntax required for the creation of a cursor?
What is EXPLAIN?
What are catalog tables in db2?
what is difference between random and sequence file access
What is the STOSPACE Utility used for?
What is the difference between nvl and coalesce?
in a table consist of 1000 records among that i was updated 145 record how could i know that ..list of recently updated record's and where could i see those updated record's....pls help me out....
What is the picture clause of the null indicator variable?
What Utility is used to migrate DB2 from one release to the next?
What is the use of predicate?
What is the difference between cursor and select statement?
what will be the output of the below given query, if no matching records are found : (a.) 0 (b.) null (c.) error select Avg(salary) from TableA where Deptno = 'insurance'