25
Introduction to Oracle Administration Glen Parker http://presentation.glenparker.net University of South Florida BbWorld 07 Boston, MA

Introduction to Oracle Administration Glen Parker University of South Florida BbWorld 07 Boston, MA

Embed Size (px)

Citation preview

Page 1: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Introduction to Oracle

Administration

Glen Parkerhttp://presentation.glenparker.net

University of South Florida

BbWorld 07Boston, MA

Page 2: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Today

•Rename presentation “Intro to Backup & Recovery”

•Backup strategy

•Backup & Recovery Example

http://presentation.glenparker.net

Page 3: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Backups

Cold Backups

Hot Backups

Page 4: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

SQL> archive log list

Database log mode Archive ModeAutomatic archival Enabled

Do you Archivelog ?

Database log mode No Archive ModeAutomatic archival Disabled

- or -

Page 5: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

create pfile from spfile;alter system set log_archive_start=TRUE scope=spfile;alter system set log_archive_dest_1=<path> scope=spfile;shutdown immediate;startup mountalter database archivelog;alter database open;

Start Archivelog Today

Page 6: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Backups

Cold Backups

Hot Backups

Page 7: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Control File

SimpleOne Database

No Stored ScriptsFewer Recovery Options

Repository

ComplexMany databases

N+1 Backup problemStored Scripts

RMAN

?

Page 8: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Prerequisites Database in Archivelog mode

A separate storage location from the production database

Multiplexed Controlfiles

Page 9: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Setuprman TARGET sys/password@SID

CONFIGURE CHANNEL DEVICE TYPE DISK MAXPIECESIZE = 2G FORMAT '/nfs/backup/SID/ora_df%t_s%s_s%p';

CONFIGURE RETENTION POLICY TO RECOVERY WINDOW OF 30 DAYS;

Page 10: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Setuprman TARGET sys/password@SID

CONFIGURE CONTROLFILE AUTOBACKUP ON;

CONFIGURE CONTROLFILE AUTOBACKUP FORMAT FOR DEVICE TYPE DISK TO '/nfs/backup/SID/controlfile%F';

Page 11: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Backuprman TARGET sys/password@SID

RMAN> BACKUP INCREMENTAL LEVEL 0 DATABASE SPFILE PLUS ARCHIVELOG ;

Page 12: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Backuprman TARGET sys/password@SID

RMAN> BACKUP INCREMENTAL LEVEL 1 CUMULATIVE DATABASE SPFILE PLUS ARCHIVELOG;

Page 13: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Automation

# crontab -l

30 1 * * 0 /oracle/backup/SID_levelzero.sh30 1 * * 1-6 /oracle/backup/SID_levelone.sh

Page 14: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

RMAN Recovery

rman TARGET sys/password@SID

RMAN> STARTUP FORCE MOUNT; RESTORE DATABASE; RECOVER DATABASE; ALTER DATABASE OPEN;

Result: No Data Loss

Page 15: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Nuff’ Nuff’ SaidSaid

Practice Recovery

Often

Page 16: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Questions

Online Resourceshttp://scholar.com

Search: ‘raistlinxw’ & ‘bbworld07’

Glen [email protected]

http://presentation.glenparker.net

Thank You ! !

Page 17: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Start on bootSolaris - /var/opt/oracle/oratabLinux - /etc/oratab

# cat oratabSID0:/usr/local/oracle/base/product/9.2:Y

# cat /etc/rc3.d/S99oracle$ORACLE_HOME/bin/dbstart$ORACLE_HOME/bin/lsnrctl start

Page 18: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

login.sql

export SQLPATH = $ORACLE_HOME/sqlpath

cat $SQLPATH/login.sql

define _editor=vi

set serveroutput on size 1000000

set trimspool onset long 5000set linesize 100set pagesize 0set echo off

Page 19: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Logs

SQL> show parameter dump_dest

- Background (alert.log) # grep ORA alert.log

- Core

- User

Page 20: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Blackboard Support

Point in Time snapshotDatabase most expensive queries

cd /usr/local/blackboard/tools/perf_reports

./run_all.sh

Page 21: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

dbms_statssqlplus system/password

SQL> exec dbms_stats.gather_schema_stats( OWNER=>’bb_bb60’, METHOD_OPT=>’for all indexed columns size auto’, CASCADE=>true);

Page 22: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Statspack setup

SQL> @?/rdbms/admin/spcreate

user: perfstat

Page 23: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Statspack Snapshot

sqlplus perfstat/password

SQL> exec statspack.snap

15 minutes apart

Page 24: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Statspack Report

sqlplus perfstat/password

SQL> @?/rdbms/admin/spreport

Page 25: Introduction to Oracle Administration Glen Parker  University of South Florida BbWorld 07 Boston, MA

Questions

Online Resourceshttp://scholar.com

Search: ‘raistlinxw’ & ‘bbworld07’

Glen [email protected]

http://presentation.glenparker.net

Thank You ! !