473,657 Members | 2,531 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

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 1912

<na**********@g mail.com> wrote in message
news:11******** *************@g 49g2000cwa.goog legroups.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******@nospa m.yahoo.com> wrote in message
news:bY******** ************@ro gers.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**********@gm ail.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**********@g mail.com> a écrit dans le message de
news:11******** *************@g 49g2000cwa.goog legroups.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
387
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 beta testing and include Visual Basic 2005 Express, Visual C# 2005 Express, Visual C++ 2005 Express, Visual C++ 2005 Express, Visual J# 2005 Express, Visual Web Dev 2005 Express and SQL Server 2005 Express.
0
4536
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 Express Edition v1.3.2 Win, IBM Tivoli System Automation v1.2.0 Linux, IBM Tivoli Workload Scheduler Virtualized Data Centers v8.2 , other IBM Tivoli CDs, WEBSPHERE EVERYPLACE MOBILE PORTAL v5.0 - ALTIUM , other IBM WebSphere Business CDs...
1
1965
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, especially as a Web server or a database server. The second is as a local client data store where the application data access does not depend on the network. Ease of use and simplicity are key design goals.
10
1970
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? Should it be able to? I know it's express edition, and therefore limited functionality, but surely resources are quite fundamental? Also, once it's downloaded, is there any way of getting access to the fully downloaded file incase you want to...
1
6616
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 Express Edition x86: Component Microsoft SQL Server 2005 Express Edition x86 returned an unexpected value. ***EndOfSession***? Microsoft SQL Server 2005 Express Edition x86: Component Microsoft SQL Server 2005 Express Edition x86 returned an...
4
2517
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? 2. Does VWD Express Edition support the idea of Solutions? I coun't figure out how to create a blank solution which I usually do with VS2005 (and then add my web site to the solution.)
3
1329
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 Devlopment Express Edition I know these tools are availabe for free download from microsoft.
13
2425
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 assuming ) if I create an EXE and I load an MDB file, I can see if certain fields are there, and if not add them. Kinda like an Update that is imbeded into the EXE, so you dont always have to create an Install shield.
11
6233
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 have a problem with queries against a SQL server instance that I just found and is causing me fits. I hope someone can point me in the right direction, please. TIA. Basically, I got a Vista OS machine to test my VB6 app on it as some
3
6429
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 get an error at the end of the SQL server install phase 'Invalid endpoint'. (Note SQL server express gets installed OK) If I run SQL server express SP2 setup directly it I don't get the error
0
8420
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, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8324
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8842
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, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8740
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 tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7353
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, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5642
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4330
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2743
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.