Oracle Database Administration for UNIX Systems (Bk/CD-ROM)

Overview

More Oracle databases are deployed on UNIX systems than any other platform. Oracle Database Administration on UNIX Systems is the first comprehensive guide to Oracle database administration on UNIX platforms. For both new and experienced DBAs and managers, this book presents a thorough overview of Oracle database architecture; step-by-step guidance for planning, sizing, and installing Oracle systems; and expert guidance on UNIX-specific configuration and tuning issues. Expert Oracle DBA Lynnwood Brown reviews ...
See more details below
Available through our Marketplace sellers.
Other sellers (Multimedia Set)
  • All (14) from $1.99   
  • New (5) from $22.0   
  • Used (9) from $1.99   
Close
Sort by
Page 1 of 1
Showing All
Note: Marketplace items are not eligible for any BN.com coupons and promotions
$22.00
Seller since Thu Jan 01 01:01:01 EST 2009

Feedback rating:

(62)

Condition:

New — never opened or used in original packaging.

Like New — packaging may have been opened. A "Like New" item is suitable to give as a gift.

Very Good — may have minor signs of wear on packaging but item works perfectly and has no damage.

Good — item is in good condition but packaging may have signs of shelf wear/aging or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Acceptable — item is in working order but may show signs of wear such as scratches or torn packaging. All specific defects should be noted in the Comments section associated with each item.

Used — An item that has been opened and may show signs of wear. All specific defects should be noted in the Comments section associated with each item.

Refurbished — A used item that has been renewed or updated and verified to be in proper working condition. Not necessarily completed by the original manufacturer.

New
New New-Includes unopened CD-clean, pristine, shiny-new-Ships from legendary independent online bookstore in Murrieta, California. Thousands of satisfied customers. We ship ... promptly and worldwide. We work hard to earn your confidence. Orders are normally shipped the same business day. We use bubble wrap heavy Kraft envelopes. Reliable customer service and no-hassle return policy. Why pay more? Read more Show Less

Ships from: Diamond Bar, CA

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$31.96
Seller since Tue Jan 01 01:01:01 EST 2008

Feedback rating:

(171)

Condition: New
0132446669 BRAND NEW NEVER USED IN STOCK 125,000+ HAPPY CUSTOMERS SHIP EVERY DAY WITH FREE TRACKING NUMBER

Ships from: fallbrook, CA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$38.15
Seller since Tue Oct 07 09:35:53 EDT 2014

Feedback rating:

(294)

Condition: New
Brand New Item.

Ships from: Chatham, NJ

Usually ships in 1-2 business days

  • Canadian
  • International
  • Standard, 48 States
  • Standard (AK, HI)
  • Express, 48 States
  • Express (AK, HI)
$60.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
$65.00
Seller since Tue Oct 07 09:37:03 EDT 2014

Feedback rating:

(184)

Condition: New
Brand new.

Ships from: acton, MA

Usually ships in 1-2 business days

  • Standard, 48 States
  • Standard (AK, HI)
Page 1 of 1
Showing All
Close
Sort by
Sending request ...

Overview

More Oracle databases are deployed on UNIX systems than any other platform. Oracle Database Administration on UNIX Systems is the first comprehensive guide to Oracle database administration on UNIX platforms. For both new and experienced DBAs and managers, this book presents a thorough overview of Oracle database architecture; step-by-step guidance for planning, sizing, and installing Oracle systems; and expert guidance on UNIX-specific configuration and tuning issues. Expert Oracle DBA Lynnwood Brown reviews Oracle security and auditing features, backup/recovery strategies, and techniques for streamlining account management, such as roles and data dictionary views. He shows how to use Oracle's SQL*Net technology in networked client/server environments, how to use constraints and other Oracle data integrity features, and how to incorporate external data in Oracle database systems.
Read More Show Less

Product Details

  • ISBN-13: 9780132446662
  • Publisher: Pearson Education
  • Publication date: 6/23/1997
  • Series: Prentice Hall Oracle Series
  • Edition description: BK&CD ROM
  • Edition number: 1
  • Pages: 224
  • Product dimensions: 7.00 (w) x 9.21 (h) x 0.71 (d)

Read an Excerpt

From Chapter 5: Database Objects, Access, and Security

...There are several objects that can exist in a database. The various objects that are owned by an end user exist in what is called the end user's schema. Each user that is defined in the database has their own schema. For example, the Oracle database user with the userid of JONES has a corresponding schema called JONES. There are several different types of schema objects. The different types of schema objects include:
  • Table. A database object used to store data in row column format. Each row is also referred to as a record.
  • View. A database object that shows a customized presentation of a table (or group of tables).
  • Synonym. A database object that is an alias for another database object such as a table or view.
  • Index. A database object used to speed across to table data.
In general, a schema is a collection of objects.

The various types of database objects can be created using SQL*PLUS. The following examples will show how database objects are created.

Creating a Table

Here's an example of creating a table:

SQL> create table emp
(empno number (4),
ename varchar2 (1 0),
job varchar2 (9),
mgr_no number(4),
hire_date date,
sal number (7, 2),
comm number (7, 2),
deptno number (2));

In this example, we have created a table called "emp." The table will contain information about the employees that work for the company. The information will be arranged into records. Each record will contain information about a employee. The records that will make up the table have eight columns.

Tocomputer the size of a record, we would use the following technique:

  • Number fields are computed using the formula: number of bytes = precession/2 + 1. In our example, we would computer the number of bytes used by the fields empno, mgr_number, sal, comm, and deptno. This would result in the following computation: number of bytes = (4/2+1) + (4/2+1) + (7/2+1) + (7/2+1) + (2/2+1) = 17.
  • One character requires one byte. Therefore, the fields denoted by varchar2 will result in the following computation: number of bytes = 10+9=19.
  • Date fields require 7 bytes.
Therefore the maximum size of a record would be 43 bytes.

We must keep in mind that this is the maximum size of the record. In reality the space held by the record may be less. This is due to the following:

  • The datatype varchar2 stands for variable length character. This means that if the number of bytes for the column data being inserted is less then the defined column length then the remaining bytes are not used. For example, if the persons last name is "Jones" then only 5 bytes are used to store the 5 characters.
  • For number fields the same is true. The internal representation for the number may require less then the maximum number of bytes.
Creating a View

A view is a tailored presentation of data stored in one or more tables. A view can be used to hide various details of the underlining table from the person(s) that are accessing the tables data.

Here is an example of creating a view:

SQL> create view empvu
as select empno, ename, job
from emp;

In this example, we have created a view called "empvu" from the table "emp." The view "empvu" consists of three columns—empno, ename, and job. The end user that needs access to employee names and their jobs would access the view rather then the underlying table...

Read More Show Less

Table of Contents

List of Figures
List of Tables
Preface
1 Introduction to Database Management Systems 1
2 The Architecture 7
3 System Installation 21
4 Client-Server Communications and SQL*NET 41
5 Database Objects, Access, and Security 61
6 Database Backup/Recovery 91
7 Database Performance Analysis and Tuning 105
8 Database Capacity Planning 129
9 Application Development for DBAs 139
10 Summarizing the Future 151
App. A Oracle Products 155
App. B Common UNIX Commands 159
App. C SQL Reference and Hands-On Labs 167
Bibliography 183
Index 185
Read More Show Less

Customer Reviews

Be the first to write a review
( 0 )
Rating Distribution

5 Star

(0)

4 Star

(0)

3 Star

(0)

2 Star

(0)

1 Star

(0)

    If you find inappropriate content, please report it to Barnes & Noble
    Why is this product inappropriate?
    Comments (optional)