In Oracle 11.2 DB I have:
- transaction table in tablespace users and
- transaction_bkp table in trans_bkp tablespace
Transaction table holds data for 1 month and transaction_bkp should hold data as long as possible.
Problem is that trans_bkp tablespace becomes full after 6 months.
Idea to resolve this problem is to backup trans_bkp tablespace every month and then truncate table transaction_bkp.
How to do this backup?
If customer will need some specific data in past how can I delivery them.