Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I'd like to figure out the best way to archive the data that is no needed anymore, in order to improve the application performance and also to save disk space. In your experience what is the best way to implement this, what kind of tools can I use? It is better to develop an specific in house application for that purpose?

share|improve this question
There is many ways of archiving off of Oracle. U don't need to develop any tools. Whats sort of hardware/budget do you have. Do have SANS installed. Do you need to have your archive data, almost available, or can it be packed away in a offsite cupboard for years? – scope_creep Nov 11 '09 at 21:07
Why do you think archiving will improve application performance ? If you are going to archive data, you need to think how you will access it later (if you need to). Bear in mind future schema changes and database upgrades will affect the ability to 'just' reload it. – Gary Myers Nov 11 '09 at 21:51
1  
I think that we really need to hear more about your needs here ... the volume of data, how complex the schema is and how many tables you need to archive from, whether you ever need that data again and if so what would be the SLA for accessing it ... – David Aldridge Nov 12 '09 at 7:37
@David- Well the thing is I will no need the data anymore, I want to have it as backup, Im talking about 60 Gb or something. – Rulas Nov 12 '09 at 14:12
@Gary- Maybe you are right about there are no much difference in the application performance, the main goals of this archiving are things like 1. Reduction of the time required for database maintenance activities: Reorganization, Export/Import, index creation/re-creation, adding disk space. 2. Reduction of the time required for recovery in case of a disaster occurs. 3. Reduction of the time required for the daily backups (less use of the tape backup infrastructure). 4. Reduction of the cost of the hardware (disk and disk chassis) required to store the data. – Rulas Nov 12 '09 at 14:13
show 1 more comment

2 Answers

I would export the data to a comma-delimited file so it can be exported into almost any database. So if you change versions of Oracle or go to something else years later you can restore it without much concern.

Use the spool file feature of SQL*Plus to do this: http://cisnet.baruch.cuny.edu/holowczak/oracle/sqlplus/#savingoutput

share|improve this answer
This is a legitimate operation that is documented in Oracle SQL. There is proof in the link. – Todd Moses Nov 12 '09 at 13:29
For anything other than small amounts of data, this is a poor option. It has difficulty with complex datatypes and even with simple VARCHAR2 columns that might contain the delimiter. – Gary Myers Nov 12 '09 at 22:06

I would recommend you look at the tools from Solix Technologies; you can visit at www.solix.com

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.