HAPPY BOOKSGIVING
Use code BOOKSGIVING during checkout to save 40%-55% on books and eBooks. Shop now.
Register your product to gain access to bonus material or receive a coupon.
The first platform-independent guide to the discipline of database administration, this book presents best practices and procedures that apply to any database platform: Oracle, Microsoft, IBM, Sybase, even MySQL and Postgres. It will be an ideal resource for organizations that have deployed multiple databases -- and for professionals who want to move comfortably amongst database platforms. Craig Mullins begins with an up-to-date introduction to the field of database administration, outlining a broad range of DBA roles and responsibilities, and showing how evolving technology has changed the profession. He walks through creating the database environment; data modeling and normalization; database/application design; and change management. Next, he introduces best practices for maximizing availability, security, data integrity, and all aspects of system, database, and application performance. From data warehouse administration to Web-based data access, Database Administration: Practices and Procedures is a single source for authoritative guidance on every facet of database administration. For every database administrator, and for managers responsible for supervising database administrators.
Database Normalization for the Real World
DBAs vs. Developers: Managing Your Data without Conflict
Developers vs. DBAs: Keys to Successful Cohabitation
Why DBAs Must Be Jacks-of-All-Trades
Click below for Sample Chapter(s) related to this title:
Sample Chapter
1
(NOTE: Most chapters conclude with Summary, Review, Bonus Question and Suggested Reading.)
Preface.
How to Use This Book.
Acknowledgments.
About the Author.
1. What Is a DBA?
The DBA: Revered or Reviled?
Why Learn Database Administration?
A Unique Vantage Point.
DBA Salaries.
Database Technology.
The Management Discipline of Database Administration.
A Day in the Life of a DBA.
Evaluating a DBA Job Offer.
Database, Data, and System Administration.
Data Administration.
Database Administration.
System Administration.
DBA Tasks.
Database Design.
Performance Monitoring and Tuning.
Availability.
Database Security and Authorization.
Backup and Recovery.
Data Integrity.
DBMS Release Migration.
Jack-of-All-Trades.
Types of DBAs.
System DBA.
Database Architect.
Database Analyst.
Data Modeler.
Application DBA.
Task-Oriented DBA.
Data Warehouse Administrator.
Staffing Considerations.
How Many DBAs?
DBA Reporting Structures.
Multiplatform DBA Issues.
Test and Production.
New Technology and the DBA.
Procedural DBAs: Managing Database Logic.
The Internet: From DBA to e-DBA.
The PDA DBA.
DBA Certification.
The Rest of the Book.
Defining the Organization's DBMS Strategy.
Choosing a DBMS.
DBMS Architectures.
DBMS Clustering.
DBMS Proliferation.
Hardware Issues.
Installing the DBMS.
DBMS Installation Basics.
Hardware Requirements.
Storage Requirements.
Memory Requirements.
Configuring the DBMS.
Connecting the DBMS to Supporting Infrastructure Software.
Installation Verification.
DBMS Environments.
Upgrading DBMS Versions and Releases.
Features and Complexity.
Complexity of the DBMS Environment.
Reputation of the DBMS Vendor.
Support Policies of the DBMS.
Organization Style.
DBA Staff Skill Set.
Platform Support.
Supporting Software.
Fallback Planning.
Migration Verification.
The DBMS Upgrade Strategy.
Database Standards and Procedures.
Database Naming Conventions.
Other Database Standards and Procedures.
DBMS Education.
Data Modeling Concepts.
Entity-Relationship Diagramming.
The Components of a Data Model.
Entities.
Attributes.
Keys.
Relationships.
Discovering Entities, Attributes, and Relationships.
Conceptual, Logical, and Physical Data Models.
What Is Normalization?
The Normal Forms.
First Normal Form.
Second Normal Form.
Third Normal Form.
A Normalized Data Model.
Further Normal Forms.
Normalization in Practice.
Additional Data Modeling Issues.
From Logical Model to Physical Database.
Transform Entities to Tables.
Transform Attributes to Columns.
Build Referential Constraints for All Relationships.
Build Physical Data Structures.
Database Performance Design.
Designing Indexes.
Hashing.
Clustering.
Interleaving Data.
Denormalization.
When to Denormalize.
Prejoined Tables.
Report Tables.
Mirror Tables.
Split Tables.
Combined Tables.
Redundant Data.
Repeating Groups.
Derivable Data.
Hierarchies.
Special Physical Implementation Needs.
Denormalization Summary.
Views.
Data Definition Language.
Database Application Development and SQL.
SQL.
Set-at-a-Time Processing and Relational Closure.
Embedding SQL in a Program.
SQL Middleware and APIs.
Object Orientation and SQL.
Types of SQL.
SQL Coding for Performance.
Defining Transactions.
Transaction Guidelines.
Unit of Work.
Transaction Processing Systems.
Application Servers.
Locking.
Types of Locks.
Lock Timeouts.
Deadlocks.
Lock Duration.
Lock Escalation.
Programming Techniques to Minimize Locking Problems.
Locking Summary.
Batch Processing.
What Is a Design Review?
Rules of Engagement.
Design Review Participants.
Knowledge and Skills Required.
Types of Design Reviews.
Conceptual Design Review.
Logical Design Review.
Physical Design Review.
Organizational Design Review.
SQL and Application Code Design Review.
Pre-Implementation Design Review.
Post-Implementation Design Review.
Design Review Output.
Change Management Requirements.
The Change Management Perspective of the DBA.
Types of Changes.
DBMS Software.
Hardware Configuration.
Logical and Physical Design.
Applications.
Physical Database Structures.
Impact of Change on Database Structures.
The Limitations of ALTER.
Database Change Scenarios.
Comparing Database Structures.
Requesting Database Changes.
Standardized Change Requests.
Communication.
Defining Availability.
Increased Availability Requirements.
Cost of Downtime.
How Much Availability Is Enough?
Availability Problems.
Loss of the Data Center.
Network Problems.
Loss of the Server Hardware.
Disk-Related Outages.
Operating System Failure.
DBMS Software Failure.
Application Problems.
Security and Authorization Problems. @@BHEADS = Corruption of Data.
Loss of Database Objects.
Loss of Data.
Data Replication and Propagation Failures.
Severe Performance Problems.
Recovery Issues.
DBA Mistakes.
Outages: Planned and Unplanned.
Ensuring Availability.
Perform Routine Maintenance While Systems Remain Operational.
Automate DBA Functions.
Exploit High-Availability Features.
Exploit Clustering Technology.
Suggested Reading.
Defining Performance.
A Basic Database Performance Road Map.
Monitoring vs. Management.
Reactive vs. Proactive.
Preproduction Performance Estimation.
Historical Trending.
Service-Level Management.
Types of Performance Tuning.
System Tuning.
Database Tuning.
Application Tuning.
Performance Tuning Tools.
DBMS Performance Basics.
The Larger Environment.
Interaction with the Operating System.
Allied Agents.
Hardware Configuration.
Components of the DBMS.
DBMS Installation and Configuration Issues.
Types of Configuration.
Memory Usage.
Data Cache Details.
“Open” Database Objects.
Database Logs.
Locking and Contention.
The System Catalog.
Other Configuration Options.
General Advice.
System Monitoring.
Techniques for Optimizing Databases.
Partitioning.
Raw Partition vs. File System.
Indexing.
Denormalization.
Clustering.
Interleaving Data.
Free Space.
Compression.
File Placement and Allocation.
Page Size (Block Size).
Database Reorganization.
Determining When to Reorganize.
Automation.
Designing Applications for Relational Access.
Relational Optimization.
CPU and I/O Costs.
Database Statistics.
Query Analysis.
Joins.
Access Path Choices.
Additional Optimization Considerations.
View Access.
Query Rewrite.
Rule-Based Optimization.
Reviewing Access Paths.
Forcing Access Paths.
SQL Coding and Tuning for Efficiency.
SQL Rules of Thumb.
Additional SQL Tuning Tips.
Identifying Poorly Performing SQL.
Types of Integrity.
Database Structure Integrity.
Types of Structural Problems.
Managing Structural Problems.
Semantic Data Integrity.
Entity Integrity.
Unique Constraints.
Data Types.
Default Values.
Check Constraints.
Triggers.
Referential Integrity.
Database Security Basics.
Database Users.
Granting and Revoking Authority.
Types of Privileges.
Granting to PUBLIC.
Revoking Privileges.
Security Reporting.
Authorization Roles and Groups.
Roles.
Groups.
Other Database Security Mechanisms.
Using Views for Security.
Using Stored Procedures for Security.
Auditing.
External Security.
Job Scheduling and Security.
Non-DBMS DBA Security.
Preparing for Problems.
Image Copy Backups.
Full vs. Incremental Backups.
Database Objects and Backups.
DBMS Control.
Concurrent Access Issues.
Backup Consistency.
Log Archiving and Backup.
Determining Your Backup Schedule.
DBMS Instance Backup.
Designing the DBMS Environment for Recovery.
Alternate Approaches to Database Backup.
Document Your Backup Strategy.
Database Object Definition Backups.
Recovery.
Determining Recovery Options.
General Steps for Database Object Recovery.
Types of Recovery.
Index Recovery.
Testing Your Recovery Plan.
Recovering a Dropped Database Object.
Recovering Broken Blocks and Pages.
Populating Test Databases.
Alternatives to Backup and Recovery.
Standby Databases.
Replication.
Disk Mirroring.
The Need for Planning.
Risk and Recovery.
General Disaster Recovery Guidelines.
The Remote Site.
The Written Plan.
Personnel.
Backing Up the Database for Disaster Recovery.
Tape Backups.
Storage Management Backups.
Other Approaches.
Some Guidelines.
Disaster Prevention.
Disaster and Contingency Planning Web Sites.
Storage Management Basics.
Files and Data Sets.
File Placement on Disk.
Raw Partitions vs. File Systems.
Temporary Database Files.
Space Management.
Data Page Layouts.
Index Page Layouts.
Transaction Logs.
Storage Options.
RAID.
JBOD.
Storage Area Networks.
Network-Attached Storage.
Direct Access File System.
Planning for the Future.
Capacity Planning.
Loading and Unloading Data.
The LOAD Utility.
The UNLOAD Utility.
Maintaining Application Test Beds.
EXPORT and IMPORT.
Bulk Data Movement.
ETL Software.
Replication and Propagation.
Messaging Software.
Other Methods.
Distributed Databases.
Setting Up a Distributed Environment.
Data Distribution Standards.
Accessing Distributed Data.
Two-Phase COMMIT.
Distributed Performance Problems.
What Is a Data Warehouse?
Analytical vs.Transaction Processing.
Administering the Data Warehouse.
Too Much Focus on Technology?
Data Warehouse Design.
Data Movement.
Data Cleansing.
Data Warehouse Scalability.
Data Warehouse Performance.
Data Freshness.
Data Content.
Data Usage.
Financial Chargeback.
Backup and Recovery.
Don't Operate in a Vacuum!
Client/Server Computing.
A Historical Look.
Business Issues.
What Is Client/Server Computing?
Types of Client/Server Applications.
Database Gateways.
Network Traffic.
Databases, the Internet, and the Web.
Internet-Connected Databases.
New Technologies.
Database Design.
What Is Metadata?
From Data to Knowledge and Beyond.
Metadata Strategy.
Data Warehousing and Metadata.
Types of Metadata.
Repositories and Data Dictionaries.
Repository Benefits.
Repository Challenges.
Data Dictionaries.
Types and Benefits of DBA Tools.
Data Modeling and Design.
Database Change Management.
Table Editors.
Performance Management.
Backup and Recovery.
Database Utilities.
Data Warehousing and Business Intelligence.
Programming and Development Tools.
Miscellaneous Tools.
Evaluating DBA Tool Vendors.
Homegrown DBA Tools.
The Rules.
Write Down Everything.
Keep Everything.
Automate!
Share Your Knowledge.
Analyze, Simplify, and Focus.
Don't Panic!
Measure Twice, Cut Once.
Understand the Business, Not Just the Technology.
Don't Become a Hermit.
Use All of the Resources at Your Disposal.
Keep Up-to-Date.
Final Exam.
What Is a Database?
Why Use a DBMS?
Advantages of Using a DBMS.
Summary.
The Big Three.
Contact Information.
The Second Tier.
Contact Information.
Other Significant Players.
Contact Information.
Open-Source DBMS Offerings.
Nonrelational DBMS Vendors.
Object-Oriented DBMS Vendors.
PC-Based DBMS Vendors.
The Major Vendors.
Other DBA Tool Vendors.
Data Modeling Tool Vendors.
Repository Vendors.
Data Movement and Business Intelligence Vendors.
Usenet Newsgroups.
Mailing Lists.
Web Sites and Portals.
Vendor Web Sites.
Magazine Web Sites.
Consultant Web Sites.
Database Portals.
Other Web Sites.
Database Management and Database Systems.
Data Administration, Data Modeling, and Database Design.
Data Warehousing.
Object Orientation and Database Management.
Related Topics.
DB2.
IMS.
Informix.
Oracle.
SQL Server.
Sybase.
A Database Management System (DBMS) is used to create databases. Most of today's applications deploy databases to store information like names, addresses, account balances, etc. This information can be accessed and manipulated by application programs to perform business processes (like payroll processing, sales processing, and customer billing). Every DBMS requires database administration to ensure efficient and effective usage of databases by applications. This means that every user of Oracle, Microsoft SQL Server, DB2, Informix, Sybase, mySQL, Teradata, PostgreSQL, Ingres and any other popular DBMS will benefit from the information in this book.
Many organizations have multiple of these products and will benefit from a consolidated view of DBA that does not focus on the internals and nuances of each particular DBMS product. Such a view is presented in this text.This book provides the industry's first non-product based description of database administration techniques and practices. The book defines the job of database administrator and outlines what is required of a DBA in clear, easy-to-understand language. The book can be used:
Every organization that deploys databases using a DBMS needs to understand the concepts outlined in this book. Many small to medium organizations attempt to implement DBMS products without DBA. This book explains the practice of DBA and can be used to educate these organizations as to the necessity of DBA in order for DBMS implementation to succeed. Other organizations implement only subsets of the DBA practices that are covered in this book. With a thorough reading of Database Administration: Practices and Procedures, it will become quite clear that a comprehensive approach to DBA is required. This book examines and explains each of the components that comprise the discipline of database administration.
As technology advances new IT techniques emerge that impact the discipline of DBA. Two such areas are Internet-enabled database access and storing procedural logic in the DBMS in the form of triggers, user-defined functions, and stored procedures. Because the impact of these newer technologies and techniques on the role of the DBA is examined in this book, even seasoned database professionals will find the book useful. Indeed, the book will be helpful for any and all of the following folks:
Because this book covers heterogeneous database administration without focusing on just one DBMS, it can be used by organizations to set up a DBA function when more than one DBMS product is being used. This is particularly important because Gartner Group, the industry analyst firm, estimates that most medium to large organizations have from 3 to 10 different DBMS products in use that require administration. The single-DBMS shop is a rarity these days.
Additionally, DBA positions are currently very hot, with DBAs demanding and obtaining very high salaries. As such, many technicians aspire to become DBAs and this book will help them to do just that. If you are an IT professional with interest in becoming a DBA, this book will help you to achieve that objective.Other books about database administration are available, but they approach the subject from the perspective of a single DBMS. Many of these books are quite good. I wrote one myself for DB2. This book is not intended to replace such books, but to augment these books with an independent treatment of database administration tasks.
How to Use This bookThis book can be used as both a tutorial and a reference. The book is organized to proceed chronologically through DBA tasks that are likely to be encountered. So, if you read the book sequentially from Chapter 1 through Chapter 23 you will get a comprehensive chronological overview of the DBA job. Or you can read any chapter independently if you wish because each chapter deals with a single subject matter. References to other chapters are clearly made where appropriate if other material in the book would aid the reader's understanding.
Click below to download the Index file related to this title:
Index