473,399 Members | 2,159 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,399 software developers and data experts.

Restore online backup and roll forward just the logs stored in it.How?

aj
DB2 LUW v8.2 FP 14 RHAS 2.1

I have a DB2 online DB backup that was done w/ the INCLUDE LOGS
option. I am interested in restoring that backup, and rolling
forward ONLY the logs contained in the backup and no more, then
bringing the DB online.

I do not want to use a userexit to try and retrieve additional
logs - I only want to roll forward the logs in the backup. (In
case you haven't guessed, I am restoring a test version of my
prod DB).

I have some questions about the commands I would use to accomplish
this. Lets say my DB name and instance name are foo.

My DB backup file is FOO.0.foo.NODE0000.CATN0000.20070319020726.001

First, the restore:
db2 restore db foo taken at 20070319020726 logtarget /tmp

If I were to use the LOGS option after the DB name in the restore
command, ONLY the logs would be retrieved from the backup image and
placed in /tmp, and the DB restore would not take place. Correct?

By specifying LOGTARGET (and not using LOGS), this will cause the
DB image to be restored AND the logs in the image to be placed
in /tmp. Correct?

Now I'm interested in doing the roll-forward. I can't just
db2 rollforward db foo to end of logs and stop
because my userexit will come into play, and the rollforward is
not being informed about the logs in /tmp. I need a PIT.

I need the minimum PIT for the roll-forward. So, I can do this:
db2 rollforward db foo stop
SQL1276N Database "FOO" cannot be brought out of rollforward pending
state until roll-forward has passed a point in time greater than or
equal to "2007-03-19-06.30.35.000000", because node "0" contains
information later than the specified time.

Is there another way to establish the minimum PIT? I'm trying to
automate the process of restoring and rolling forward. IBM is
assuming that eyes and fingers are issuing these commands.

So, armed w/ my PIT, I do this:
db2 "rollforward db foo to 2007-03-19-06.30.35.000000 overflow log path
/tmp)"

What is the purpose of overflow log path? Is it to indicate where logs
should be written when/if they are retrieved? OR is it to indicate
where to look for logs that are needed for the roll forward?

After I try this, DB2 complains about being unable to retrieve a log
that is outside the range of those stored w/ my online backup, and I
scratch my head for a few more minutes.....

Would using RECOVER DATABASE be a better idea for what I am trying to do?

Any help appreciated.

thanks
aj
Mar 20 '07 #1
4 20415
aj wrote:
[...]
>
So, armed w/ my PIT, I do this:
db2 "rollforward db foo to 2007-03-19-06.30.35.000000 overflow log path
/tmp)"
I think it should be:

rollforward db foo to end of logs and stop overflow log path ( /tmp )

[...]
/Lennart
Mar 21 '07 #2
aj
OK - I'll give it a try.

The RESTORE command puts logs S0016355.LOG and S0016356.LOG in /tmp.
So apparently 16355 and 16356 are stored in the backup image.

db2 rollforward db foo to end of logs and stop overflow log path (/tmp)
SQL1268N Roll-forward recovery stopped due to error "1" while
retrieving log file "S0016357.LOG" for database "FOO" on node "0".

And the DB is still in rollforward pending mode...

WHY is it going after 16357?

Any other ideas?

thanks
aj

Lennart wrote:
aj wrote:
[...]
>>
So, armed w/ my PIT, I do this:
db2 "rollforward db foo to 2007-03-19-06.30.35.000000 overflow log path
/tmp)"

I think it should be:

rollforward db foo to end of logs and stop overflow log path ( /tmp )

[...]
/Lennart
Mar 21 '07 #3
aj
Maybe this will help the next guy. This pretty much explains it:
http://www-1.ibm.com/support/docview...id=swg21209404

They key is to specify the NORETRIEVE option of the ROLLFORWARD
DATABASE command. This will prevent DB2 UDB from trying to
obtain potentially missing transaction logs elsewhere.

aj

aj wrote:
OK - I'll give it a try.

The RESTORE command puts logs S0016355.LOG and S0016356.LOG in /tmp.
So apparently 16355 and 16356 are stored in the backup image.

db2 rollforward db foo to end of logs and stop overflow log path (/tmp)
SQL1268N Roll-forward recovery stopped due to error "1" while
retrieving log file "S0016357.LOG" for database "FOO" on node "0".

And the DB is still in rollforward pending mode...

WHY is it going after 16357?

Any other ideas?

thanks
aj

Lennart wrote:
>aj wrote:
[...]
>>>
So, armed w/ my PIT, I do this:
db2 "rollforward db foo to 2007-03-19-06.30.35.000000 overflow log path
/tmp)"

I think it should be:

rollforward db foo to end of logs and stop overflow log path ( /tmp )

[...]
/Lennart
Mar 21 '07 #4
I'm doing this every night (script and a reidrected restore)
restore db xxxx from yyyyy taken at zzzzzz to path into newdb
logtarget aaaa newlogpath aaaa REDIRECT WITHOUT PROMPTING;
set tablespace containers hhhh;
restore db bbbb continue;
rollforward db cccc to end of logs and stop overflow log path (/tmp);
so..I wonder why it doesn't work for you ? I'm running db2 udb v8 with
fixpak 10
/roger
Mar 22 '07 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
by: Andre | last post by:
Hi, I have a database (or better: used to have) and backup consisting of - the initial (complete) database - all log files since then (or so I thought) After making a data entry error I wrote...
1
by: Grisha Golberg | last post by:
Hi all, I am trying to move a database from one machine to another. I backed up in offline mode, then I do a restore (without rolling forward), which finishes successfully but with warning 2529...
1
by: Jimmy Chen | last post by:
Recently I've done a db2 backup and restore/recovery, but the process for recovering the database was different than what I thought to be. here is what I did: DB2 is set in online mode -...
5
by: Anurag | last post by:
Hello, I wish to find out the restore method for database that have been incrementally backed up and in the scenario where just the delta has been backed up. For example sake, let us assume the...
13
by: Andy K | last post by:
Hi , I'm wondering what's going on with a restore I'm trying to do . My DB2 version is a 7.2 on a Linux RH ES 2.1 . I've copy a recent backup that was on NAS for a test on my machine . I...
6
by: paul | last post by:
Hi, i made an attempt to restore a online backup made with include logs option. But when i rollforward the db, i can't pout it online because it always ned log file. I tried the option to...
6
by: Raj | last post by:
How can we do an online restore of a tablespace using the incremental backup's? we are on a partitioned database... Also, how could we use backup copy made by the load (using the copy to option...
3
by: Konstantin Andreev | last post by:
Hello, everybody. I've spent a lot of time reading "DB2 Information Center" and Raul Chong's book "Understanding DB2. Learning Visually with Examples", but still unable to answer this simple...
3
by: Bill E. | last post by:
I'm trying to restore a database backed up a production machine onto my development machine. I don't want to restore the transaction logs (there are two) because they are far too large and are...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.