3 Copyright © 2009, Oracle. All rights reserved. Creating an Oracle Database Using DBCA.

Slides:



Advertisements
Similar presentations
18 Copyright © Oracle Corporation, All rights reserved. Transporting Data Between Databases.
Advertisements

2 Copyright © 2005, Oracle. All rights reserved. Installing the Oracle Database Software.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
20 Copyright © 2008, Oracle. All rights reserved. Globalization.
INTRODUCTION TO ORACLE Lynnwood Brown System Managers LLC Installation – Lecture 2 Copyright System Managers LLC 2007 all rights reserved.
10 Copyright © 2009, Oracle. All rights reserved. Managing Undo Data.
2 Copyright © 2009, Oracle. All rights reserved. Installing your Oracle Software.
Configuring Recovery Manager
4 Copyright © 2008, Oracle. All rights reserved. Configuring Backup Specifications.
9 Copyright © Oracle Corporation, All rights reserved. Oracle Recovery Manager Overview and Configuration.
Using RMAN to Perform Recovery
1 Copyright © 2005, Oracle. All rights reserved. Introduction.
13 Copyright © Oracle Corporation, All rights reserved. RMAN Complete Recovery.
15 Copyright © 2004, Oracle. All rights reserved. Proactive Maintenance.
CHAPTER 2 Implementing a Database. Introduction to Creating Databases After you’ve installed the Oracle software, the next logical step is to create a.
5 Copyright © 2004, Oracle. All rights reserved. Using Recovery Manager.
11 Copyright © Oracle Corporation, All rights reserved. RMAN Backups.
11 Copyright © Oracle Corporation, All rights reserved. RMAN Backups.
■ Decide on the local database name, and which domain will contain this database. These names are set in the initialization parameters DB_NAME and DB_DOMAIN.
15 Copyright © 2005, Oracle. All rights reserved. Performing Database Backups.
Backup & Recovery Backup and Recovery Strategies on Windows Server 2003.
16 Copyright © 2007, Oracle. All rights reserved. Performing Database Recovery.
15 Copyright © 2007, Oracle. All rights reserved. Performing Database Backups.
Using OUI to install Oracle9i Release 2 on an OpenVMS System.
Installing Oracle9i RAC Release 2 on HP OpenVMS Systems.
17 Copyright © Oracle Corporation, All rights reserved. Recovery Catalog Creation and Maintenance.
Oracle 10g Database Administrator: Implementation and Administration Chapter 3 Creating an Oracle Instance.
5 Copyright © 2005, Oracle. All rights reserved. Managing Database Storage Structures.
16 Copyright © 2006, Oracle. All rights reserved. Using Globalization Support.
8 Copyright © Oracle Corporation, All rights reserved. Configuring the Database Archiving Mode.
14 Copyright © 2005, Oracle. All rights reserved. Backup and Recovery Concepts.
6 Copyright © 2007, Oracle. All rights reserved. Managing Database Storage Structures.
Week 2 Lecture 1 Creating an Oracle Instance. Learning Objectives  Learn the steps for creating a database  Understand the prerequisites for creating.
3 Copyright © 2006, Oracle. All rights reserved. Using Recovery Manager.
9 Copyright © 2009, Oracle. All rights reserved. Deploying and Reporting on ETL Jobs.
3 Copyright © 2007, Oracle. All rights reserved. Creating an Oracle Database.
2 Copyright © 2004, Oracle. All rights reserved. Installing Oracle Database 10g Software.
3 Copyright © 2005, Oracle. All rights reserved. Creating an Oracle Database.
12 Copyright © Oracle Corporation, All rights reserved. User-Managed Complete Recovery.
18 Copyright © 2004, Oracle. All rights reserved. Backup and Recovery Concepts.
2 Copyright © 2007, Oracle. All rights reserved. Configuring for Recoverability.
2 Copyright © 2006, Oracle. All rights reserved. Configuring Recovery Manager.
16 Copyright © 2005, Oracle. All rights reserved. Performing Database Recovery.
8 Copyright © 2007, Oracle. All rights reserved. Using RMAN to Duplicate a Database.
3 Copyright © 2004, Oracle. All rights reserved. Creating an Oracle Database.
3 Copyright © 2007, Oracle. All rights reserved. Using the RMAN Recovery Catalog.
18 Copyright © 2004, Oracle. All rights reserved. Recovery Concepts.
14 Copyright © 2005, Oracle. All rights reserved. Backup and Recovery Concepts.
C Copyright © 2007, Oracle. All rights reserved. Security New Features.
6 Copyright © Oracle Corporation, All rights reserved. Backup and Recovery Overview.
19 Copyright © 2004, Oracle. All rights reserved. Database Backups.
3 Copyright © 2004, Oracle. All rights reserved. Database Architecture Comparison.
13 Copyright © 2007, Oracle. All rights reserved. Using the Data Recovery Advisor.
3 Copyright © 2006, Oracle. All rights reserved. Installation and Administration Basics.
13 Copyright © 2004, Oracle. All rights reserved. Optimizing Database Performance.
17 Copyright © 2006, Oracle. All rights reserved. Information Publisher.
2 Copyright © 2005, Oracle. All rights reserved. Installing Oracle Software and Creating the Database.
14 Copyright © 2007, Oracle. All rights reserved. Backup and Recovery Concepts.
4 Copyright © 2004, Oracle. All rights reserved. Managing the Oracle Instance.
9 Copyright © 2004, Oracle. All rights reserved. Getting Started with Oracle Migration Workbench.
8 Copyright © Oracle Corporation, All rights reserved. Managing Tablespaces and Data files.
5 Copyright © 2005, Oracle. All rights reserved. Managing the Oracle Instance.
1 Copyright © 2005, Oracle. All rights reserved. Oracle Database Administration: Overview.
Oracle 10g Administration Database Control and Storage Structures Copyright ©2006 Custom Training Institute.
Unit 2 Preparing the Database Environment.
Creating an Oracle Database
Installing the Oracle Database Software
Index Index.
Performing Database Recovery
Presentation transcript:

3 Copyright © 2009, Oracle. All rights reserved. Creating an Oracle Database Using DBCA

Copyright © 2009, Oracle. All rights reserved Objectives After completing this lesson, you should be able to do the following: Create a database by using the Database Configuration Assistant (DBCA) Generate database creation scripts with the DBCA Manage database design templates with the DBCA Perform additional tasks with the DBCA

Copyright © 2009, Oracle. All rights reserved Planning the Database As a DBA, you must plan: The logical storage structure of the database and its physical implementation: –How many disk drives do you have? What type of storage is being used? –How many data files will you need? (Plan for growth.) –How many tablespaces will you use? –What types of information will be stored? –Are there any special storage requirements due to type or size? Overall database design Database backup strategy

Copyright © 2009, Oracle. All rights reserved Databases: Examples General purpose or transaction processing: –Online transaction processing (OLTP) system, for example a retail billing system for a software house or a nursery Custom: –Multipurpose database (perhaps combined OLTP and data warehouse functionality) Data warehouse: –Research and marketing data –State or federal tax payments –Professional licensing (doctors, nurses, and so on)

Copyright © 2009, Oracle. All rights reserved Choosing the Appropriate Character Set The Oracle database supports different classes of character-encoding schemes: –Single-byte character sets — 7-bit — 8-bit –Multibyte character sets, including Unicode The character set is chosen at the time of database creation. Choose the character set that best meets your business requirements now and in the future because it can be difficult to change character sets later on. In general Unicode is recommended because it is the most flexible character set.

Copyright © 2009, Oracle. All rights reserved

Copyright © 2009, Oracle. All rights reserved How Are Character Sets Used? Oracle Net compares the client NLS_LANG setting to the character set on the server. If needed, conversion occurs automatically and transparently. Client Oracle Net NLS_LANG Server

Copyright © 2009, Oracle. All rights reserved Problems to Avoid Example: No conversion occurs, because it does not seem to be required. Issue: Invalid data are entered into the database. Server Database character set: AL32UTF8 Client Windows English Code page: WE8MSWIN1252 NLS_LANG: AL32UTF8 Oracle Net

Copyright © 2009, Oracle. All rights reserved Database Configuration Assistant (DBCA) 1 2

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database 3 4

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database 5 Configuring Enterprise Manager for your database requires a listener to be configured as well. Enable automatic maintenance tasks such as optimizer statistic collection and proactive advisor reports. 6

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database 8 Choose between the file system or ASM (if ASM is available) Create multiple copes of your redo logs and control files if desired. Adjust file location variables (ORACLE_BASE, ORACLE_HOME, DB_NAME, DB_UNIQUE_NAME, SID) if needed. 7

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database 8 9

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database B A 10 View and alter initialization parameters.

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Create a Database 11 12

Copyright © 2009, Oracle. All rights reserved Create Database Summary 13

Copyright © 2009, Oracle. All rights reserved Password Management 14

Copyright © 2009, Oracle. All rights reserved Creating a Database Design Template

Copyright © 2009, Oracle. All rights reserved Using the DBCA to Delete a Database

Copyright © 2009, Oracle. All rights reserved

Copyright © 2009, Oracle. All rights reserved Using the DBCA for Additional Tasks

Copyright © 2009, Oracle. All rights reserved Quiz The parameter DB_BLOCK_SIZE is set for the lifetime of a database and cannot be changed. 1.True 2.False

Copyright © 2009, Oracle. All rights reserved Quiz In order to drop a database using the DROP DATABASE command, the database must be: 1.Open and in RESTRICT mode 2.Mounted exclusively in RESTRICT mode 3.Shut down with the immediate option

Copyright © 2009, Oracle. All rights reserved Summary In this lesson, you should have learned how to: Create a database by using the Database Configuration Assistant (DBCA) Generate database creation scripts with the DBCA Manage database design templates with the DBCA Perform additional tasks with the DBCA

Copyright © 2009, Oracle. All rights reserved Practice 3 Overview: Using the DBCA This practice covers the following topics: Creating the ORCL database by using the DBCA Unlocking the HR schema Note: Completing database creation and unlocking the HR schema are critical for all following practices. Creating the ORCL database design template by using the DBCA Creating database creation scripts by using the DBCA

Copyright © 2009, Oracle. All rights reserved