dbTalk Databases Forums  

wanted : archive tool

comp.database.oracle comp.database.oracle


Discuss wanted : archive tool in the comp.database.oracle forum.



Reply
 
Thread Tools Display Modes
  #1  
Old   
fhoornaert@hotmail.com
 
Posts: n/a

Default wanted : archive tool - 01-29-2004 , 08:47 AM






Hello,

I'm looking for a reliable software solution for archiving a production
database to a backup database.

the main goal of the archiving tool :
Without archiving, the production database would have a total of 100Gb/year
over 300 tables.
The customer only wants the data of the last 3 months in the production
database so that it can be easily backup each night.
Data older then 3 months should be transferred once a month to an archive
database.
This archive database should have the same structure as the production
database and should also be on-line 24h a days.
Data in the archived database should be kept for 30 years.

We have a lot of administration tables (250 out of 300) which are only
updated, no records are added. The other 50 tables (used for registrations)
have lots of inserts in them.
The administration tables should be synchronized from the production DB to
the archive DB, while the registration tables should be transferred based on
a date.

Which are the possibities ? Any good 3rd party solutions ? And without 3rd
party solution ?

When replying, please CC to my email account
--
Greetz,
Frederic Hoornaert

Reply With Quote
  #2  
Old   
Jim Kennedy
 
Posts: n/a

Default Re: wanted : archive tool - 01-29-2004 , 09:18 AM







<fhoornaert (AT) hotmail (DOT) com> wrote

Quote:
Hello,

I'm looking for a reliable software solution for archiving a production
database to a backup database.

the main goal of the archiving tool :
Without archiving, the production database would have a total of
100Gb/year
over 300 tables.
The customer only wants the data of the last 3 months in the production
database so that it can be easily backup each night.
Data older then 3 months should be transferred once a month to an archive
database.
This archive database should have the same structure as the production
database and should also be on-line 24h a days.
Data in the archived database should be kept for 30 years.

We have a lot of administration tables (250 out of 300) which are only
updated, no records are added. The other 50 tables (used for
registrations)
have lots of inserts in them.
The administration tables should be synchronized from the production DB to
the archive DB, while the registration tables should be transferred based
on
a date.

Which are the possibities ? Any good 3rd party solutions ? And without 3rd
party solution ?

When replying, please CC to my email account
--
Greetz,
Frederic Hoornaert
You could use partitions to partition the data. Your biggest problem will
be keeping the schema stable for 30 years.
Jim




Reply With Quote
  #3  
Old   
DBA Infopower Support
 
Posts: n/a

Default Re: wanted : archive tool - 02-06-2004 , 12:26 AM




Hello Frederic,

Princeton softech is your 3rd party vendor. Tool is very good but
expensive and complex.

As a oracle only solution here is the how you can design your archiving
strategy:

1) once a month create new tablespaces (bets is one for data and one for
indexes) that contains all tables to be archived (or you can create 12 sets
once a year). Good naming standard for objects is "<table_base_name>_0104",
for example

2) Every month during maintenance window place tablespaces to archive into
read only mode and move them to archive database using transportable
tabespaces approach (basically export metadata, copy datafiles and import
metadata)

3) If you still need production access to the archive tables - create
database links and synonyms for access

Partition approach can be used, but it complicates ts transport, since now
you'd have to exchange partition segment with the table segment before the
transport.

Please, let us know if you'd have additional questions on subject

Regards,

Support,
DBA Infopower
www.dbainfopower.com

Makers of Statspack Research tool - performance explorer-i / Statspack

<
Quote:
wrote

Hello,

I'm looking for a reliable software solution for archiving a production
database to a backup database.

the main goal of the archiving tool :
Without archiving, the production database would have a total of
100Gb/year
over 300 tables.
The customer only wants the data of the last 3 months in the production
database so that it can be easily backup each night.
Data older then 3 months should be transferred once a month to an archive
database.
This archive database should have the same structure as the production
database and should also be on-line 24h a days.
Data in the archived database should be kept for 30 years.

We have a lot of administration tables (250 out of 300) which are only
updated, no records are added. The other 50 tables (used for
registrations)
have lots of inserts in them.
The administration tables should be synchronized from the production DB to
the archive DB, while the registration tables should be transferred based
on
a date.

Which are the possibities ? Any good 3rd party solutions ? And without 3rd
party solution ?

When replying, please CC to my email account
--
Greetz,
Frederic Hoornaert



Reply With Quote
  #4  
Old   
DBA Infopower Support
 
Posts: n/a

Default Re: wanted : archive tool - 02-06-2004 , 12:27 AM




Hello Frederic,

Princeton softech is your 3rd party vendor. Tool is very good but
expensive and complex.

As a oracle only solution here is the how you can design your archiving
strategy:

1) once a month create new tablespaces (bets is one for data and one for
indexes) that contains all tables to be archived (or you can create 12 sets
once a year). Good naming standard for objects is "<table_base_name>_0104",
for example

2) Every month during maintenance window place tablespaces to archive into
read only mode and move them to archive database using transportable
tabespaces approach (basically export metadata, copy datafiles and import
metadata)

3) If you still need production access to the archive tables - create
database links and synonyms for access

Partition approach can be used, but it complicates ts transport, since now
you'd have to exchange partition segment with the table segment before the
transport.

Please, let us know if you'd have additional questions on subject

Regards,

Support,
DBA Infopower
www.dbainfopower.com

Makers of Statspack Research tool - performance explorer-i / Statspack

<
Quote:
wrote

Hello,

I'm looking for a reliable software solution for archiving a production
database to a backup database.

the main goal of the archiving tool :
Without archiving, the production database would have a total of
100Gb/year
over 300 tables.
The customer only wants the data of the last 3 months in the production
database so that it can be easily backup each night.
Data older then 3 months should be transferred once a month to an archive
database.
This archive database should have the same structure as the production
database and should also be on-line 24h a days.
Data in the archived database should be kept for 30 years.

We have a lot of administration tables (250 out of 300) which are only
updated, no records are added. The other 50 tables (used for
registrations)
have lots of inserts in them.
The administration tables should be synchronized from the production DB to
the archive DB, while the registration tables should be transferred based
on
a date.

Which are the possibities ? Any good 3rd party solutions ? And without 3rd
party solution ?

When replying, please CC to my email account
--
Greetz,
Frederic Hoornaert



Reply With Quote
  #5  
Old   
DBA Infopower Support
 
Posts: n/a

Default Re: wanted : archive tool - 02-06-2004 , 12:27 AM




Hello Frederic,

Princeton softech is your 3rd party vendor. Tool is very good but
expensive and complex.

As a oracle only solution here is the how you can design your archiving
strategy:

1) once a month create new tablespaces (bets is one for data and one for
indexes) that contains all tables to be archived (or you can create 12 sets
once a year). Good naming standard for objects is "<table_base_name>_0104",
for example

2) Every month during maintenance window place tablespaces to archive into
read only mode and move them to archive database using transportable
tabespaces approach (basically export metadata, copy datafiles and import
metadata)

3) If you still need production access to the archive tables - create
database links and synonyms for access

Partition approach can be used, but it complicates ts transport, since now
you'd have to exchange partition segment with the table segment before the
transport.

Please, let us know if you'd have additional questions on subject

Regards,

Support,
DBA Infopower
www.dbainfopower.com

Makers of Statspack Research tool - performance explorer-i / Statspack

<
Quote:
wrote

Hello,

I'm looking for a reliable software solution for archiving a production
database to a backup database.

the main goal of the archiving tool :
Without archiving, the production database would have a total of
100Gb/year
over 300 tables.
The customer only wants the data of the last 3 months in the production
database so that it can be easily backup each night.
Data older then 3 months should be transferred once a month to an archive
database.
This archive database should have the same structure as the production
database and should also be on-line 24h a days.
Data in the archived database should be kept for 30 years.

We have a lot of administration tables (250 out of 300) which are only
updated, no records are added. The other 50 tables (used for
registrations)
have lots of inserts in them.
The administration tables should be synchronized from the production DB to
the archive DB, while the registration tables should be transferred based
on
a date.

Which are the possibities ? Any good 3rd party solutions ? And without 3rd
party solution ?

When replying, please CC to my email account
--
Greetz,
Frederic Hoornaert



Reply With Quote
Reply




Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off



Powered by vBulletin Version 3.5.3
Copyright ©2000 - 2012, Jelsoft Enterprises Ltd.