• Complain

Pribyl Bill - Oracle PL/SQL Programming

Here you can read online Pribyl Bill - Oracle PL/SQL Programming full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. City: Sebastopol;Calif, year: 2009, publisher: OReilly Media, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Pribyl Bill Oracle PL/SQL Programming

Oracle PL/SQL Programming: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Oracle PL/SQL Programming" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Introduction to PL/SQL -- Creating and running PL/SQL code -- Language fundamentals -- Conditional and sequential control -- Iterative processing with loops -- Exception handlers -- Working with program data -- Strings -- Numbers -- Dates and timestamps -- Records -- Collections -- Miscellaneous datatypes -- DML and transaction management -- Data retrieval -- Dynamic SQL and dynamic PL/SQL -- Procedures, functions, and parameters -- Packages -- Triggers -- Managing PL/SQL code -- Optimizing PL/SQL performance -- I/O and PL/SQL -- Application security and PL/SQL -- PL/SQL architecture -- Globalization and localization in PL/SQL -- Object-oriented aspects of PL/SQL.;This book is the definitive reference on PL/SQL, considered throughout the database community to be the best Oracle programming book available. Like its predecessors, this fifth edition of Oracle PL/SQL Programming covers language fundamentals, advanced coding techniques, and best practices for using Oracles powerful procedural language. Thoroughly updated for Oracle Database 11g Release 2, this edition reveals new PL/SQL features and provides extensive code samples, ranging from simple examples to complex and complete applications, in the book and on the companion website. This indispensab.

Pribyl Bill: author's other books


Who wrote Oracle PL/SQL Programming? Find out the surname, the name of the author of the book and a list of all author's works by series.

Oracle PL/SQL Programming — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Oracle PL/SQL Programming" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Oracle PL/SQL Programming
Steven Feuerstein
Bill Pribyl
Published by OReilly Media

Beijing Cambridge Farnham Kln Sebastopol Tokyo Dedication To my father - photo 1

Beijing Cambridge Farnham Kln Sebastopol Tokyo

Dedication

To my father, Sheldon Feuerstein, whose intellectual curiosity, personal integrity, and devotion to family inspire me daily.

Steven Feuerstein

To my father.

Bill Pribyl

SPECIAL OFFER: Upgrade this ebook with OReilly

for more information on this offer!

Please note that upgrade offers are not available from sample content.

A Note Regarding Supplemental Files

Supplemental files and examples for this book can be found at http://examples.oreilly.com/9780596514464/. Please use a standard desktop web browser to access these files, as they may not be accessible from all ereader devices.

All code files or examples referenced in the book will be available online. For physical books that ship with an accompanying disc, whenever possible, weve posted all CD/DVD content. Note that while we provide as much of the media content as we are able via free download, we are sometimes limited by licensing restrictions. Please direct any questions or concerns to .

Preface

Millions of application developers and database administrators around the world use software provided by Oracle Corporation to build complex systems that manage vast quantities of data. At the heart of much of Oracles software is PL/SQLa programming language that provides procedural extensions to Oracles version of SQL (Structured Query Language) and serves as the programming language within the Oracle Developer toolset (most notably Forms Developer and Reports Developer).

PL/SQL figures prominently as an enabling technology in almost every new product released by Oracle Corporation. Software professionals use PL/SQL to perform many kinds of programming functions, including:

  • Implementing crucial business rules in the Oracle Server with PL/SQL-based stored procedures and database triggers

  • Generating and managing XML documents entirely within the database

  • Linking web pages to an Oracle database

  • Implementing and automating database administration tasksfrom establishing row-level security to managing rollback segments within PL/SQL programs

PL/SQL was modeled after Ada,] a programming language designed for the U.S. Department of Defense. Ada is a high-level language that emphasizes data abstraction, information hiding, and other key elements of modern design strategies. As a result of this very smart design decision by Oracle, PL/SQL is a powerful language that incorporates many of the most advanced elements of procedural languages, including:

  • A full range of datatypes from number to string, and including complex data structures such as records (which are similar to rows in a relational table), collections (which are Oracles version of arrays), and XMLType (for managing XML documents in Oracle and through PL/SQL)

  • An explicit and highly readable block structure that makes it easy to enhance and maintain PL/SQL applications

  • Conditional, iterative, and sequential control statements, including a CASE statement and three different kinds of loops

  • Exception handlers for use in event-based error handling

  • Named, reusable code elements such as functions, procedures, triggers, object types (akin to object-oriented classes), and packages (collections of related programs and variables)

PL/SQL is integrated tightly into Oracles SQL language: you can execute SQL statements directly from your procedural program without having to rely on any kind of intermediate API (Application Programming Interface) such as JDBC (Java Database Connectivity) or ODBC (Open Database Connectivity). Conversely, you can also call your own PL/SQL functions from within a SQL statement.

Oracle developers who want to be successful in the 21st century must learn to use PL/SQL to full advantage. This is a two-step process. First, you must become familiar with and learn how to use the languages ever-expanding set of features; and second, after gaining competence in the individual features, you must learn how to put these constructs together to build complex applications.

For these reasons and more, Oracle developers need a solid, comprehensive resource for the base PL/SQL language. You need to know the basic building blocks of PL/SQL, but you also need to learn by example so that you can avoid some of the trial and error. As with any programming language, PL/SQL has a right way and many wrong ways (or at least not as right ways) to handle just about any task. It is my hope that this book will help you learn how to use the PL/SQL language in the most effective and efficient way possible.



[ for more information about Ada.

Objectives of This Book

What, specifically, will this book help you do?

Take full advantage of PL/SQL

Oracles reference manuals may describe all the features of the PL/SQL language, but they dont tell you how to apply the technology. In fact, in some cases, youll be lucky to even understand how to use a given feature after youve made your way through the railroad diagrams. Books and training courses tend to cover the same standard topics in the same limited way. In this book, Ill venture beyond the basics to the far reaches of the language, finding the nonstandard ways that a particular feature can be tweaked to achieve a desired result.

Use PL/SQL to solve your problems

You dont spend your days and nights writing PL/SQL modules so that you can rise to a higher plane of existence. You use PL/SQL to solve problems for your company or your customers. In this book, I try hard to help you tackle real-world problems, the kinds of issues developers face on a daily basis (at least those problems that can be solved with mere software). To do this, Ive packed the book with examplesnot just small code fragments, but substantial application components that you can apply immediately to your own situations. There is a good deal of code in the book itself, and much more on the accompanying web site. In a number of cases, I use the code examples to guide you through the analytical process needed to come up with a solution. In this way youll see, in the most concrete terms, how to apply PL/SQL features and undocumented applications of those features to a particular situation.

Write efficient, maintainable code

PL/SQL and the rest of the Oracle products offer the potential for incredible development productivity. If you arent careful, however, this capability will simply let you dig yourself into a deeper, darker hole than youve ever found yourself in before. I would consider this book a failure if it only helped programmers write more code in less time; I want to help you develop the skills and techniques to build applications that readily adapt to change and that are easily understood and maintained. I want to teach you to use comprehensive strategies and code architectures that allow you to apply PL/SQL in powerful, general ways to the problems you face.

Structure of This Book

Both the authors and OReilly Media are committed to providing comprehensive, useful coverage of PL/SQL over the life of the language. This fifth edition of Oracle PL/SQL Programming describes the features and capabilities of PL/SQL up through Oracle Database 11 g Release 2. I assume for this edition that Oracle Database 11

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Oracle PL/SQL Programming»

Look at similar books to Oracle PL/SQL Programming. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Oracle PL/SQL Programming»

Discussion, reviews of the book Oracle PL/SQL Programming and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.