Oracle 8: The Complete Reference

Oracle 8: The Complete Reference

by George B. Koch, Kevin Loney
     
 

View All Available Formats & Editions

The single most comprehensive sourcebook for Oracle8. This encyclopedic hardcover reference is the cornerstone of the Oracle curriculum.

The Most Authoritative Coverage of Oracle8 Available.

More than 500,000 Oracle Press books are in the hands of Oracle developers worldwide due to their exhaustive insider's coverage of the world's most popular RDBMS. The

See more details below

Overview

The single most comprehensive sourcebook for Oracle8. This encyclopedic hardcover reference is the cornerstone of the Oracle curriculum.

The Most Authoritative Coverage of Oracle8 Available.

More than 500,000 Oracle Press books are in the hands of Oracle developers worldwide due to their exhaustive insider's coverage of the world's most popular RDBMS. The encyclopedic Oracle8: The Complete Reference is the cornerstone of Oracle's core curriculum. Fully revised,this #1 best-seller is back - bigger and even better than ever - providing the full story of Oracle8,The Database for Network Computing.

Written by a former senior vice president of Oracle Corporation,George Koch,and best-selling Oracle author,Kevin Loney,this easy-to-use book/CD covers the full suite of Oracle8's capabilities. In straightforward language,the authors simplify even the most complex aspects of Oracle8 - and reveal scores of insider tips and secrets along the way.

Oracle developers of all skill levels will harness the true power of Oracle8 as they use this special hardcover edition to:

  • Find full coverage of Oracle8 written in understandable terms
  • Implement object technology in Oracle8
  • Develop applications with the Oracle ConText Cartridge,Oracle8's powerful database search tool
  • Discover Oracle8's more robust handling of very large databases
  • Understand basic concepts of PL/SQL
  • Find every important Oracle8 command,function,syntax,keyword,concept,and product in the huge alphabetical reference

Unmatched in range,content,and authority,Oracle8: The Complete Reference has set the standard for Oracle reference guides. Thisone-of-a-kind book and CD package is a must have for every Oracle developer - whether a seasoned professional or just getting started.

Read More

Editorial Reviews

Booknews
Covers the full suite of Oracle8's capabilities. Simplifies even the most complex aspects and reveals scores of insider tips and secrets. Thirty-six chapters present an introduction to critical database concepts; the theory and techniques of relational database systems applications, including SQL and SQLPLUS; a user-oriented guide to the data dictionary; and a discussion of the designing of useful and well- received applications. Also contains an alphabetical reference to every important command, function, syntax, keyword, concept, and product. Includes a CD-ROM version of the volume. Annotation c. by Book News, Inc., Portland, Or.

Product Details

ISBN-13:
9780078823961
Publisher:
Osborne/McGraw-Hill
Publication date:
09/01/1997
Series:
Complete Reference Series
Edition description:
BK&CD ROM
Pages:
1344
Product dimensions:
7.67(w) x 9.45(h) x 2.77(d)

Related Subjects

Read an Excerpt


From Chapter 4: The Basics of Object-Relational Databases

...As of ORACLE8, you can extend your relational database to include object-oriented concepts and structures. In this chapter, you will see an overview of the major object-oriented features available in ORACLE8 and the impact they have on your SQL. You will see detailed descriptions of more advanced object-oriented features in later chapters; this chapter introduces the concepts and provides a general overview.

Do I Have to Use Objects?

Just because you upgrade to ORACLE8, that does not mean you have to use object-oriented (OO) concepts when implementing your database. In fact, the database is referred to as an ORDBMS--an object-relational database management system. The implication for developers is that three different "flavors" of ORACLE are available:

Relational: The traditional ORACLE relational database (RDBMS)

Object-relational: The traditional ORACLE relational database, extended to include object-oriented concepts and structures such as abstract datatypes, nested tables, and varying arrays.

Object-oriented: An object-oriented database whose design is based solely on object-oriented analysis and design.

ORACLE provides full support for all three different implementations--relational, object-relational, and object-oriented. If you have previously used ORACLE as a relational database (the only option available in ORACLE7 and below), you can use ORACLE8 in the same manner. Since the OO capabilities are extensions to the relational database, you can select which OO features you wish to use when enhancing existing relational applications. If you want to redesign andimplement your application using only OO features, you can do that also. Regardless of the method you choose, you should first be familiar with the functions and features of the core ORACLE relational database. Even if you plan to use only OO capabilities, you will still need to know the functions and datatypes available in ORACLE, as well as its programming languages (SQL and PL/SQL).

This part of this book began with an overview of the basic parts of speech in SQL. In this chapter, you will see those same parts of speech extended to include object-relational structures. In the following chapters, you will see detailed descriptions of ORACLE's functions, followed by sections on PL/SQL, triggers, and procedures. Following the chapters on PL/SQL and procedures, you will see several chapters on the implementation of OO features available as of ORACLE8. You should understand ORACLE's functions, structures, and programming languages before implementing the more advanced OO and object-relational structures.

Why Should I Use Objects?

Since you don't have to use objects, should you use them at all? A first, using OO features may seem to complicate the design and implementation of your database systems--just as adding new features to any system may automatically increase its complexity. OO adherents claim that objects reduce complexity by giving you an intuitive way of representing complex data and its relations. For example, if you want to move a car, you can either move the car (an object) or you can break it into its components (tires, steering column, etc.), move the components individually, and then perform a join in the new location. Treating the car as an object is a more natural way of relating to it and simplifies your interaction with it.

Besides simplifying your interactions with data, objects may help you in other ways. In this chapter, you will see examples of three benefits that come from using OO features:

  • Object reuse If you write OO code, you increase the chances of reusing previously written code modules. Similarly, if you create OO database objects, you increase the chances that the database objects can be reused.

  • Standards adherence If you create standard objects, then you increase the chance that they will be reused. If multiple applications or tables use the same set of database objects, then you have created a de facto standard for the database objects. For example, if you create standard datatypes to use for all addresses, then all of the addresses in your database will use the same internal format.

  • Defined access paths For each object, you can define the procedures and functions that act upon it--you can unite the data and the methods that access it. Having the access paths defined in this manner allows you to standardize the data access methods and enhance the reusability of the objects.

The costs of using objects are chiefly the added complexity of the system and the time it takes to learn how to implement the features. But as you'll see in this chapter, the basics of extending the ORACLE RDBMS to include OO capabilities build easily upon the relational model presented in the earlier chapters. The short time required to develop and use abstract datatypes, as shown later in this chapter, should help you gauge the time required for learning OO features.

Everybody Has Objects

Everybody has data, and everybody has methods of interacting with data. Since the combination of data and methods makes up an object, everybody has objects. Consider Talbot's list of employees again, as shown in Figure 4-1. He has a standard for the structure of an address--it starts with a person's name, followed by a lodging name, street name, and city name. When he adds a new person to his list of Dora's help, he follows the same procedure...

Read More

Customer Reviews

Average Review:

Write a Review

and post it to your social network

     

Most Helpful Customer Reviews

See all customer reviews >