Less07 storage

Post on 30-Oct-2014

510 Views

Category:

Documents

5 Downloads

Preview:

Click to see full reader

DESCRIPTION

ORACLE 11g

Transcript

7Copyright © 2009, Oracle. All rights reserved.

Managing Database Storage Structures

Copyright © 2009, Oracle. All rights reserved.7 - 2

Objectives

After completing this lesson, you should be able to:

• Describe the storage of table row data in blocks

• Create and manage tablespaces

• Obtain tablespace information

Copyright © 2009, Oracle. All rights reserved.7 - 3

How Table Data Is Stored

Tablespace

Table A Table B

SegmentSegment

Rows

Columns

Table

Blocks

Row piece Extent

Copyright © 2009, Oracle. All rights reserved.7 - 4

Database Block: Contents

Block header

Free space

Row data

Growth

Copyright © 2009, Oracle. All rights reserved.7 - 5

Exploring the Storage Structure

Click the links to view detailed information.

Copyright © 2009, Oracle. All rights reserved.7 - 6

Creating a New Tablespace

Copyright © 2009, Oracle. All rights reserved.7 - 7

Creating a New Tablespace

Choose the appropriate Storage Type

Copyright © 2009, Oracle. All rights reserved.7 - 8

Storage for Tablespaces

Copyright © 2009, Oracle. All rights reserved.7 - 10

Tablespaces in the Preconfigured Database

• UNDOTBS1

• USERS

• EXAMPLE (optional)

• SYSTEM

• SYSAUX

• TEMP

Copyright © 2009, Oracle. All rights reserved.7 - 12

Altering a Tablespace

Copyright © 2009, Oracle. All rights reserved.7 - 14

Actions with Tablespaces

Copyright © 2009, Oracle. All rights reserved.7 - 16

Dropping Tablespaces

Copyright © 2009, Oracle. All rights reserved.7 - 17

Viewing Tablespace Information

Copyright © 2009, Oracle. All rights reserved.7 - 18

Viewing Tablespace Contents

Copyright © 2009, Oracle. All rights reserved.7 - 19

Oracle-Managed Files (OMF)

Specify file operations in terms of database objects rather than file names.

Parameter Description

DB_CREATE_FILE_DEST Defines the location of the default file system directory for data files and temporary files

DB_CREATE_ONLINE_LOG_DEST_n Defines the location for redo log files and control file creation

DB_RECOVERY_FILE_DEST Default location for the fast recovery area

Example:

SQL> ALTER SYSTEM SET DB_CREATE_FILE_DEST = '+DATA'; SQL> CREATE TABLESPACE tbs_1;

Copyright © 2009, Oracle. All rights reserved.7 - 21

Enlarging the Database

You can enlarge the database in the following ways:

• Creating a new tablespace

• Adding a data file to an existing smallfile tablespace

• Increasing the size of a data file

• Providing for the dynamic growth of a data file

SYSTEM tablespace

INVENTORY tablespace

Database

Copyright © 2009, Oracle. All rights reserved.7 - 22

Quiz

A database can have a mixture of Oracle-managed and unmanaged files.

1. True

2. False

Copyright © 2009, Oracle. All rights reserved.7 - 23

Quiz

Bigfile Tablespaces must have 1 file of at least 100 MB.

1. True

2. False

Copyright © 2009, Oracle. All rights reserved.7 - 24

Summary

In this lesson, you should have learned how to:

• Describe the storage of table row data in blocks

• Create and manage tablespaces

• Obtain tablespace information

Copyright © 2009, Oracle. All rights reserved.7 - 25

Practice 7 Overview:Managing Database Storage Structures

This practice covers the following topics:

• Creating tablespaces

• Gathering information about tablespaces

top related