Home > Ask the Oracle Database / Applications Experts > Oracle database backup and recovery Questions & Answers > Which backup strategy should I use for my Oracle 10g database?
Ask The Oracle Expert: Questions & Answers
EMAIL THIS

Which backup strategy should I use for my Oracle 10g database?

Brian Peasland1 EXPERT RESPONSE FROM: Brian Peasland1

Pose a Question
Other Oracle Categories
Meet all Oracle Experts
Become an Expert for this site


Oracle tips, scripts, and expert advice
Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google


>
QUESTION POSED ON: 14 August 2008
I want to take a backup of our SAP production server which has Oracle Database 10g. How do I take the backup? And how do I increase tablespace?


Digg This!    StumbleUpon Toolbar StumbleUpon    Bookmark with Delicious Del.icio.us    Add to Google



RELATED CONTENT
Oracle database backup and recovery
How to perform Oracle database recovery with a corrupt online redo log
Can I create an Oracle Catalog Database with the Enterprise Console?
Do I need to recreate views after an Oracle table reorg?
Client-based apps vs. web-based apps in Developer 2000
How to perform an Oracle 8i to 10g migration
Can I move the tablespace online with missing datafiles in Oracle?
Oracle upgrade process vs. Oracle exp/imp for 9i to 10g migration
How to use RMAN CONVERT to migrate from Solaris to Oracle 11g RHEL
Why am I having trouble installing Oracle 10g on Vista?
Can I load Oracle 8 on Windows Server 2003?

Oracle database administration
How to rebuild a built-in Oracle package body
How to use a wrapper script with cold backups in Oracle
How to rebuild a database to change Oracle block size
Can we use a single database update trigger for an Oracle database upgrade?
Understanding Oracle cost-based optimizer (CBO) and rule-based optimizer (RBO)
The top 10 Eye on Oracle blog posts of 2008
The top advice from Oracle experts in 2008
Web 2.0 users, community and participation in the enterprise
Enterprise search and links for Web 2.0
Tips for Web 2.0 success and setting Web 2.0 goals in the enterprise
Oracle database administration Research

Introduction and Oracle storage management basics
Oracle 11g: Backup and recovery concepts
SearchOracle.com E-Book: Database Storage Management
How to use backup utilities in 10g
Taking backup from one server to second
Are offline backups a waste of time?
Reference books for backup and recovery and performance tuning
OS commands for copying files to a backup location
Taking hot, cold and RMAN backups on Linux and Windows
Speeding up database backup
Recovering corrupt data file without any backup files

RELATED RESOURCES
2020software.com, trial software downloads for accounting software, ERP software, CRM software and business software systems
Search Bitpipe.com for the latest white papers and business webcasts
Whatis.com, the online computer dictionary


There are multiple ways to backup an Oracle database. Each method has its pros and cons. The method you use depends on your recovery requirements. So you'll need to figure out what type of recovery scenarios you will need and then tailor your backup strategy to fit those needs. To understand more about these methods, please read the following document:

Oraclce Backup and Recovery Basics

To increase a tablespace's size, you can increase the datafile sizes associated with the tablespace. First, query the Data Dictionary to see the files associated with the tablespace:

SELECT file_name,bytes FROM dba_data_files
WHERE tablespace_name='ts_name';

Then increase the file's sizes with a command similar to the following:

ALTER DATABASE DATAFILE '/directory/filename'
RESIZE size;>

Where size is something like "100K", "10M" or "1G". Make sure the new size is larger than the old size. Alternatively, you can let the file automatically grow when it runs out of space by issuing the following:

ALTER DATABASE DATAFILE '/directory/filename'
AUTOEXTEND ON NEXT xxxM MAXSIZE yyyM;

The last alternative is to add a new datafile to the tablespace similar to the following:

ALTER TABLESPACE ts_name ADD DATAFILE
'/directory/filename' AUTOEXTEND ON NEXT xxxM MAXSIZE yyyM;

For more on Oracle backup and recovery:

Database storage management all-in-one guide: This learning guide will help you become an expert in backup and recovery.

Oracle 11g: Backup and Recovery concepts: Download this chapter to learn the basic concepts behind Oracle's backup and recovery mechanisms.




Search and Browse the Expert Answer Center
Search and browse more than 25,000 question and answer pairs from more than 250 TechTarget industry experts.
Browse our Expert Advice



Oracle White Papers: Fusion Middleware
HomeNewsTopicsTipsAsk the ExpertsMultimediaWhite PapersProductsBlogs
About Us  |  Contact Us  |  For Advertisers  |  For Business Partners  |  Site Index  |  RSS
SEARCH 
TechTarget provides technology professionals with the information they need to perform their jobs - from developing strategy, to making cost-effective purchase decisions and managing their organizations' technology projects - with its network of technology-specific websites, events and online magazines.

TechTarget Corporate Web Site  |  Media Kits  |  Site Map




All Rights Reserved, Copyright 2003 - 2009, TechTarget | Read our Privacy Policy
  TechTarget - The IT Media ROI Experts