Related Titles
- Full Description
-
Pro Oracle Database 11g Administration is a book focused on results. Author Darl Kuhn draws from a well of experience over a decade deep to lay out real-world techniques that lead to success as an Oracle Database administrator. He gives clear explanations on how to perform critical tasks. He weaves in theory where necessary without bogging you down in unneeded detail. He is not afraid to take a stand on how things should be done. He wont leave you adrift in a sea of choices, showing you three ways to do something and then walking away.
Database administration isnt about passing a certified exam, or about pointing-and-clicking your way through a crisis. Database administration is about applying the right solution at the right time, about avoiding risk, about making robust choices that get you home each night in time for dinner with your family. If you have buck stops here responsibility for an Oracle database, then Pro Oracle Database 11g Administration is the book you need to help elevate yourself to the level of Professional Oracle Database Administrator.
- Condenses and organizes the core job of a database administrator into one volume.
- Takes a results-oriented approach to getting things done.
- Lays a foundation upon which to build a senior level of expertise
What youll learn
- Create a stable environment consistent across all databases that you manage
- Take care of job #1: backing up, and then recovering when needed
- Manage users and objects, and the security between them
- Do battle with largelarge databases and large objects
- Move and distribute data using Data Pump, materialized views, external tables
- Automate critical jobs and tackle database troubleshooting problems
Who this book is for
Pro Oracle Database 11g Administration is aimed at new database administrators who aspire to senior positions in which employers and customers trust you to work independently, and with a buck stops here attitude.
- Table of Contents
-
Table of Contents
- Installing the Oracle Binaries
- Implementing a Database
- Configuring an Efficient Environment
- Tablespaces and Datafiles
- Managing Control Files and Online Redo Logs
- Users and Basic Security
- Tables and Constraints
- Indexes
- Views, Synonyms, and Sequences
- Data Dictionary Basics
- Large Objects
- Partitioning: Divide and Conquer
- Data Pump
- External Tables
- Materialized Views
- User-Managed Backup and Recovery
- Configuring RMAN
- RMAN Backups and Reporting
- RMAN Restore and Recovery
- Oracle Secure Backup
- Automating Jobs
- Database Troubleshooting
- Source Code/Downloads
- Errata
-
If you think that you've found an error in this book, please let us know about it. You will find any confirmed erratum below, so you can check if your concern has already been addressed.
On page 54:
CREATE OR REPLACE VIEW tickets_v
AS
SELECT
t.ticket_id,
t.subject,
t.descr description,
t.assigned_to,
t.created_on,
t.created_by,
t.closed_on,
sl.status,
td.number_of_details
FROM
tickets t,
(SELECT ticket_id, COUNT(ticket_id) number_of_details
FROM ticket_details GROUP BY ticket_id) td,
status_lookup sl
WHERE
t.status_id = sl.status_id
AND t.ticket_id = td.ticket_id(+)
ORA-00904: "T"."DESCR": invalid identifier






