473,387 Members | 1,691 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,387 software developers and data experts.

DB2 Express

Hi Guys,

New to DB2 .

Want to create a disaster DB2 server with minimum resources, as
client(small company) can't afford big and don't have much budget to
spend.Currently backing to local tape. Tape is kept locally in safe,
as now client will loose all his data in event of major disaster to his
site.

1. I am running DB2 express edition on Redhat linux AS4 on IBM Server.

Requirment:-

Client want to failover to remote site in event of disaster. He don't
mind having his disaster site db2 server database not updated for 24
hrs. He has very small database of 4GB

Solutions I am thinking right now:

1. Using export utilitly to extract data into some file. Compress it
and send it using scp/sftp(write a script to automatically do every
night) to remote disaster server.

2. Then on disater site import the data.

Will this work? As I am new to DB2 express or DB2. I don't know if DB2
express has export/import utility.
Please anybody help me in telling if it works. If that don't, any
suggestions?
I am having basic understaning of databases and sql, as I am more of
unix admin.Had worked previously on oracle 8 but never on DB2.

Regards,
Naveen

Dec 12 '05 #1
5 1890

<na**********@gmail.com> wrote in message
news:11*********************@g49g2000cwa.googlegro ups.com...
Hi Guys,

New to DB2 .

Want to create a disaster DB2 server with minimum resources, as
client(small company) can't afford big and don't have much budget to
spend.Currently backing to local tape. Tape is kept locally in safe,
as now client will loose all his data in event of major disaster to his
site.

1. I am running DB2 express edition on Redhat linux AS4 on IBM Server.

Requirment:-

Client want to failover to remote site in event of disaster. He don't
mind having his disaster site db2 server database not updated for 24
hrs. He has very small database of 4GB

Solutions I am thinking right now:

1. Using export utilitly to extract data into some file. Compress it
and send it using scp/sftp(write a script to automatically do every
night) to remote disaster server.

2. Then on disater site import the data.

Will this work? As I am new to DB2 express or DB2. I don't know if DB2
express has export/import utility.


This will work, but will be slow -- especially if you want to copy the
entire database.

A better idea would be to take a backup of the database nightly, scp/sftp
the backup images to the remote site, and then use a redirected restore to
update the remote server.

Or better yet, suggest using HADR and get your client to upgrade to DB2 ESE
on both machines :)

--
Matt Emmerton
Dec 12 '05 #2
"Matt Emmerton" <me******@nospam.yahoo.com> wrote in message
news:bY********************@rogers.com...

This will work, but will be slow -- especially if you want to copy the
entire database.

A better idea would be to take a backup of the database nightly, scp/sftp
the backup images to the remote site, and then use a redirected restore to
update the remote server.

Or better yet, suggest using HADR and get your client to upgrade to DB2
ESE
on both machines :)

--
Matt Emmerton

HADR can be purchased as a separate licensed option to Workgroup Edition
without having to upgrade to ESE. Not sure about DB2 Express.
Dec 13 '05 #3
Ian
na**********@gmail.com wrote:
Hi Guys,

New to DB2 .

Want to create a disaster DB2 server with minimum resources, as
client(small company) can't afford big and don't have much budget to
spend.Currently backing to local tape. Tape is kept locally in safe,
as now client will loose all his data in event of major disaster to his
site.

1. I am running DB2 express edition on Redhat linux AS4 on IBM Server.

Requirment:-

Client want to failover to remote site in event of disaster. He don't
mind having his disaster site db2 server database not updated for 24
hrs. He has very small database of 4GB

Solutions I am thinking right now:

1. Using export utilitly to extract data into some file. Compress it
and send it using scp/sftp(write a script to automatically do every
night) to remote disaster server.

2. Then on disater site import the data.

Will this work? As I am new to DB2 express or DB2. I don't know if DB2
express has export/import utility.
Please anybody help me in telling if it works. If that don't, any
suggestions?
I am having basic understaning of databases and sql, as I am more of
unix admin.Had worked previously on oracle 8 but never on DB2.


Copying the nightly backup image to the remote server will probably be
a lot of work. As suggested, HADR might be an option, although it's
still pretty expensive (HADR can be licensed with DB2 Express, but list
price is still $7000+ per CPU, even if you license DB2 Express on a
per-user basis).

You might also consider using a standby database and log shipping. See:

http://www-106.ibm.com/developerwork...04mcinnis.html
For information about this. This is the poor man's version of HADR.

Dec 13 '05 #4
Hi,
maybe you could consider using HADR, which seems to be the solution for such
purposes.
More info - http://www-306.ibm.com/software/data/db2/udb/hadr.html
It's also available and support under DB2 Express, but priced additionaly as
separated option.

Regards,
Chris.

Dec 14 '05 #5

<na**********@gmail.com> a écrit dans le message de
news:11*********************@g49g2000cwa.googlegro ups.com...
Hi Guys,

New to DB2 .

Want to create a disaster DB2 server with minimum resources, as
client(small company) can't afford big and don't have much budget to
spend.Currently backing to local tape. Tape is kept locally in safe,
as now client will loose all his data in event of major disaster to his
site.

1. I am running DB2 express edition on Redhat linux AS4 on IBM Server.

Requirment:-

Client want to failover to remote site in event of disaster. He don't
mind having his disaster site db2 server database not updated for 24
hrs. He has very small database of 4GB

Solutions I am thinking right now:

1. Using export utilitly to extract data into some file. Compress it
and send it using scp/sftp(write a script to automatically do every
night) to remote disaster server.

2. Then on disater site import the data.

Will this work? As I am new to DB2 express or DB2. I don't know if DB2
express has export/import utility.
Please anybody help me in telling if it works. If that don't, any
suggestions?
I am having basic understaning of databases and sql, as I am more of
unix admin.Had worked previously on oracle 8 but never on DB2.

Regards,
Naveen


Hi Naveen,

As per your customer requirement, ie "DB server not updated for 24h is not a
problem", you could do it by simple scripting:
backup primary source (use the compress option), rcp to secondary; retrieve
on a regular basis logs from the primary and reapply to the secondary.

HADR could help you automatize this, and would allow your customer to switch
to the secondary server in seconds, but this has a price ... we did not use
it for a customer on Windows, because pricing was too high for a DB2 Express
Edition; basically we had to ask our customer to multiply by 3 its
investement, and he logically refused.

Hope this helps,

Jean-Marc

Dec 16 '05 #6

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

Similar topics

2
by: Bootstrap Bill | last post by:
A new Google group has been formed for the purpose of discussing the new Visual Studio Express products. http://groups-beta.google.com/group/Visual-Studio-Express The products are currently in...
0
by: Zorba.GR | last post by:
IBM DB2 Connect Enterprise Edition v8.2, other IBM DB2 (32 bit, 64 bit) (MULTiOS, Windows, Linux, Solaris), IBM iSoft Commerce Suite Server Enterprise v3.2.01, IBM Tivoli Storage Resource Manager...
1
by: Darryl Kerkeslager | last post by:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/dnsse/html/sseoverview.asp SQL Server Express was developed with two distinct uses in mind. The first is as a server product,...
10
by: Bonj | last post by:
Hi I installed .NET 2005 express edition, and am about to unnistall it again because it can't seem to be able to even insert a resource file into a project. Can anyone tell me is this right?...
1
by: Peter | last post by:
I've purchased VS.NET 2005 Standard and have tried to install SQL Server 2005 Express, but get the following error in the error log. Please could someone help me.... Microsoft SQL Server 2005...
4
by: Andrew Robinson | last post by:
My main dev machine has WinXp and VS2005 (pro). 1. I need to install VWD Express Edition so that I can do some instruction on this. Any issues with both on the same machine. Installation order?...
3
by: msnews.microsoft.com | last post by:
Hello Can any one tell me that if I buy Microsoft Visual Studio 2005 Professional for dotnet, do I get following product Visual Basic Express Visual C# Express Sql Server Express Web...
13
by: Miro | last post by:
Ok I have been slowely - and ever so slowely teaching myself VB.net Currently I have created an MDB file by code, and added fields to the MDB file by code. I like this solution because, ( im...
11
by: HC | last post by:
I posted this in one of the VB forums but I'm starting to think it might be more appropriate to have it here, since it really seems to be a SQL server (MSDE/Express 2005) problem: Hey, all, I...
3
by: Steve | last post by:
Hi All I downloaded Sql server 2005 express SP2 and attempted to modify the Bootstrapper package files as I did with SP1 When i try to install SQL server as part of my VS 2005 deployment app I...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
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
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
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...

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.