The first edition of Oracle PL/SQL Programming quickly became an indispensable reference for both novice and experienced PL/SQL developers. Packed with examples and recommendations, it helped everyone using PL/SQL (from the Oracle Forms developer to the database administrator) make the most of this powerful language.Oracle8 presents PL/SQL programmers with new challenges by increasing both the possibilities and complexities of the language. This new edition updates the original book for Oracle8, adding chapters describing the new PL/SQL object features (object types, collections, object views, and external procedures). The second edition also contains a much-requested chapter on tuning PL/SQL, as well as expanded discussions of debugging and tracing PL/SQL execution.The book comes with a companion diskette containing the Companion Utilities Guide for Oracle PL/SQL Programming, an online tool developed by RevealNet, Inc. The online guide contains more than 100 file of source code and documentation prepared by the authors.Even if you've already read the first edition of Oracle PL/SQL Programming, you'll find an enormous amount of new and revised information in this second edition and on its companion diskette. If you're new to PL/SQL, you'll soon find yourself on the road to mastery.NOTE: To make room for the new material, some summaries and code from the first edition have been moved to the companion disk.Oracle PL/SQL Programming is divided into seven parts:Foreword PrefacePart I: Programming in PL/SQL
Le informazioni nella sezione "Riassunto" possono far riferimento a edizioni diverse di questo titolo.
Steven Feuerstein is considered one of the world's leading experts on the Oracle PL/SQL language. He is the author or coauthor of Oracle PL/SQL Programming, Oracle PL/SQL Best Practices, Oracle PL/SQL Programming: Guide to Oracle8i Features, Oracle PL/SQL Developer's Workbook, Oracle Built-in Packages, Advanced Oracle PL/SQL Programming with Packages, and several pocket reference books (all from O'Reilly & Associates). Steven is a Senior Technology Advisor with Quest Software, has been developing software since 1980, and worked for Oracle Corporation from 1987 to 1992.
Bill Pribyl, author, teacher, and software consultant,is the primary author of Learning Oracle PL/SQL and the coauthor of Oracle PL/SQL Programming and its companion pocket reference, all published by O'Reilly & Associates. An Oracle user since 1986, Bill has consulted on many aspects of using Oracle products. He recently spearheaded PLNet.org, a Web-based repository where developers can share open source PL/SQL.
Copyright; Dedication; Foreword; Preface; Objectives of This Book; Structure of This Book; Audience; Conventions Used in This Book; Which Platform or Version?; About the Disk; Comments and Questions; Acknowledgments; Part I: Programming in PL/SQL; Chapter 1: Introduction to PL/SQL; 1.1 What Is PL/SQL?; 1.2 The Concept of Programming in Oracle Applications; 1.3 The Origins of PL/SQL; 1.4 PL/SQL Versions; 1.5 Advice for Oracle Programmers; 1.6 A Few of My Favorite (PL/SQL) Things; 1.7 Best Practices for PL/SQL Excellence; Chapter 2: PL/SQL Language Fundamentals; 2.1 The PL/SQL Character Set; 2.2 Identifiers; 2.3 Literals; 2.4 The Semicolon Delimiter; 2.5 Comments; 2.6 The PRAGMA Keyword; 2.7 Block Structure; Chapter 3: Effective Coding Style; 3.1 Fundamentals of Effective Layout; 3.2 Formatting SQL Statements; 3.3 Formatting Control Structures; 3.4 Formatting PL/SQL Blocks; 3.5 Formatting Packages; 3.6 Using Comments Effectively; 3.7 Documenting the Entire Package; Part II: PL/SQL Language Elements; Chapter 4: Variables and Program Data; 4.1 Identifiers; 4.2 Scalar Datatypes; 4.3 NULLs in PL/SQL; 4.4 Variable Declarations; 4.5 Anchored Declarations; 4.6 Programmer-Defined Subtypes; 4.7 Tips for Creating and Using Variables; Chapter 5: Conditional and Sequential Control; 5.1 Conditional Control Statements; 5.2 Sequential Control Statements; Chapter 6: Database Interaction and Cursors; 6.1 Transaction Management; 6.2 Cursors in PL/SQL; 6.3 Implicit and Explicit Cursors; 6.4 Declaring Cursors; 6.5 Opening Cursors; 6.6 Fetching from Cursors; 6.7 Column Aliases in Cursors; 6.8 Closing Cursors; 6.9 Cursor Attributes; 6.10 Cursor Parameters; 6.11 SELECT FOR UPDATE in Cursors; 6.12 Cursor Variables; 6.13 Working with Cursors; Chapter 7: Loops; 7.1 Loop Basics; 7.2 The Simple Loop; 7.3 The Numeric FOR Loop; 7.4 The Cursor FOR Loop; 7.5 The WHILE Loop; 7.6 Managing Loop Execution; 7.7 Tips for PL/SQL Loops; Chapter 8: Exception Handlers; 8.1 Why Exception Handling?; 8.2 The Exception Section; 8.3 Types of Exceptions; 8.4 Determining Exception-Handling Behavior; 8.5 Raising an Exception; 8.6 Handling Exceptions; 8.7 Client-Server Error Communication; 8.8 NO_DATA_FOUND: Multipurpose Exception; 8.9 Exception Handler as IF Statement; 8.10 RAISE Nothing but Exceptions; Chapter 9: Records in PL/SQL; 9.1 Record Basics; 9.2 Table-Based Records; 9.3 Cursor-Based Records; 9.4 Programmer-Defined Records; 9.5 Assigning Values to and from Records; 9.6 Record Types and Record Compatibility; 9.7 Nested Records; Chapter 10: PL/SQL Tables; 10.1 PL/SQL Tables and Other Collections; 10.2 Characteristics of PL/SQL Tables; 10.3 PL/SQL Tables and DML Statements; 10.4 Declaring a PL/SQL Table; 10.5 Referencing and Modifying PL/SQL Table Rows; 10.6 Filling the Rows of a PL/SQL Table; 10.7 Clearing the PL/SQL Table; 10.8 PL/SQL Table Enhancements in PL/SQL Release 2.3; 10.9 Working with PL/SQL Tables; Part III: Built-In Functions; Chapter 11: Character Functions; 11.1 Character Function Descriptions; 11.2 Character Function Examples; Chapter 12: Date Functions; 12.1 Date Function Descriptions; 12.2 Date Function Examples; Chapter 13: Numeric, LOB, and Miscellaneous Functions; 13.1 Numeric Function Descriptions; 13.2 LOB Function Descriptions; 13.3 Miscellaneous Function Descriptions; Chapter 14: Conversion Functions; 14.1 Conversion Formats; 14.2 Conversion Function Descriptions; 14.3 Conversion Function Examples; Part IV: Modular Code; Chapter 15: Procedures and Functions; 15.1 Modular Code; 15.2 Review of PL/SQL Block Structure; 15.3 The Anonymous PL/SQL Block; 15.4 Procedures; 15.5 Functions; 15.6 Parameters; 15.7 Local Modules; 15.8 Module Overloading; 15.9 Forward Declarations; 15.10 Go Forth and Modularize!; Chapter 16: Packages; 16.1 The Benefits of Packages; 16.2 Overview of Package Structure; 16.3 The Package Specification; 16.4 The Package Body; 16.5 Package Data; 16.6 Package Initialization; Chapter 17: Calling PL/SQL Functions in SQL; 17.1 Looking at the Problem; 17.2 Syntax for Calling Stored Functions in SQL; 17.3 Requirements for Stored Functions in SQL; 17.4 Restrictions on PL/SQL Functions in SQL; 17.5 Calling Packaged Functions in SQL; 17.6 Column/Function Name Precedence; 17.7 Realities: Calling PL/SQL Functions in SQL; 17.8 Examples of Embedded PL/SQL; Part V: New PL/SQL8 Features; Chapter 18: Object Types; 18.1 Introduction to Oracle8 Objects; 18.2 Oracle Objects Example; 18.3 Syntax for Creating Object Types; 18.4 Manipulating Objects in PL/SQL and SQL; 18.5 Modifying Persistent Objects; 18.6 Object Housekeeping; 18.7 Making the Objects Option Work; Chapter 19: Nested Tables and VARRAYs; 19.1 Types of Collections; 19.2 Creating the New Collections; 19.3 Syntax for Declaring Collection Datatypes; 19.4 Using Collections; 19.5 Collection Pseudo-Functions; 19.6 Collection Built-Ins; 19.7 Example: PL/SQL-to-Server Integration; 19.8 Collections Housekeeping; 19.9 Which Collection Type Should I Use?; Chapter 20: Object Views; 20.1 Example: Using Object Views; 20.2 INSTEAD OF Triggers; 20.3 Syntax for Object Views; 20.4 Differences Between Object Views and Object Tables; 20.5 Not All Views with Objects Are Object Views; 20.6 Schema Evolution; 20.7 Object Views Housekeeping; 20.8 Postscript: Using the BFILE Datatype; Chapter 21: External Procedures; 21.1 Introduction to External Procedures; 21.2 Steps in Creating an External Procedure; 21.3 Syntax for External Procedures; 21.4 Mapping Parameters; 21.5 OCI Service Routines; 21.6 External Procedure Housekeeping; 21.7 Examples; Part VI: Making PL/SQL Programs Work; Chapter 22: Code Design Tips; 22.1 Select Meaningful Module and Parameter Names; 22.2 Build the Most Functional Functions; 22.3 Take Full Advantage of Local Modularization; 22.4 Be Wary of Modules Without Any Parameters; 22.5 Create Independent Modules; 22.6 Construct Abstract Data Types (ADTs); 22.7 Tips for Parameter Design; Chapter 23: Managing Code in the Database; 23.1 Executing Stored Code; 23.2 Transaction Integrity and Execute Authority; 23.3 Module Validation and Dependency Management; 23.4 Remote Procedure Calls; 23.5 Managing Stored Objects with SQL*Plus; 23.6 Using SQL to Examine Stored Objects; 23.7 Encrypting Stored Code; Chapter 24: Debugging PL/SQL; 24.1 The Wrong Way to Debug; 24.2 Debugging Tips and Strategies; Chapter 25: Tuning PL/SQL Applications; 25.1 Analyzing Program Performance; 25.2 Tuning Access to Compiled Code; 25.3 Tuning Access to Your Data; 25.4 Tuning Your Algorithms; 25.5 Overview of PL/SQL8 Enhancements; Chapter 26: Tracing PL/SQL Execution; 26.1 The PL/SQL Trace Facility; 26.2 Tracing for Production Support; 26.3 Free Format Filtering; 26.4 Structured Interface Filtering; 26.5 Quick-and-Dirty Tracing; Part VII: Appendixes; Appendix B: Calling Stored Procedures from PL/SQL Version 1.1; B.1 Using Stubs to Talk to Server-Side PL/SQL; B.2 Restrictions on Calling Stored Procedures; Appendix C: Built-In Packages; C.1 Using the Built-in Packages; C.2 DBMS_ALERT; C.3 Oracle AQ, the Advanced Queueing Facility; C.4 DBMS_DDL; C.5 DBMS_ JOB; C.6 DBMS_LOB (PL/SQL8 Only); C.7 DBMS_LOCK; C.8 DBMS_MAIL; C.9 DBMS_OUTPUT; C.10 DBMS_PIPE; C.11 DBMS_ROWID (PL/SQL8 Only); C.12 DBMS_SESSION; C.13 DBMS_SNAPSHOT; C.14 DBMS_SQL; C.15 DBMS_TRANSACTION; C.16 DBMS_UTILITY; C.17 UTL_FILE; Colophon;
Le informazioni nella sezione "Su questo libro" possono far riferimento a edizioni diverse di questo titolo.
GRATIS per la spedizione in U.S.A.
Destinazione, tempi e costiDa: Decluttr, Kennesaw, GA, U.S.A.
Condizione: Very Good. 1720525477. 7/9/2024 11:44:37 AM. Codice articolo U9781565923355
Quantità: 1 disponibili
Da: Better World Books: West, Reno, NV, U.S.A.
Condizione: Very Good. 2nd Edition. Used book that is in excellent condition. May show signs of wear or have minor defects. Codice articolo 15041236-75
Quantità: 1 disponibili
Da: Better World Books: West, Reno, NV, U.S.A.
Condizione: Good. 2nd Edition. Former library book; may include library markings. Used book that is in clean, average condition without any missing pages. Codice articolo GRP29645498
Quantità: 1 disponibili
Da: Wonder Book, Frederick, MD, U.S.A.
Condizione: Good. Good condition. Floppy Disc included 2nd edition. A copy that has been read but remains intact. May contain markings such as bookplates, stamps, limited notes and highlighting, or a few light stains. NOT AVAILABLE FOR SHIPMENT OUTSIDE OF THE UNITED STATES. Codice articolo H05A-03354
Quantità: 1 disponibili
Da: Wonder Book, Frederick, MD, U.S.A.
Condizione: Good. Good condition. 2nd edition. Includes Floppy Disk. A copy that has been read but remains intact. May contain markings such as bookplates, stamps, limited notes and highlighting, or a few light stains. NOT AVAILABLE FOR SHIPMENT OUTSIDE OF THE UNITED STATES. Codice articolo L03D-02048
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Good. The book has been read but remains in clean condition. All pages are intact and the cover is intact. Some minor wear to the spine. Codice articolo GOR001054714
Quantità: 1 disponibili
Da: WorldofBooks, Goring-By-Sea, WS, Regno Unito
Paperback. Condizione: Very Good. The book has been read, but is in excellent condition. Pages are intact and not marred by notes or highlighting. The spine remains undamaged. Codice articolo GOR001852387
Quantità: 2 disponibili
Da: Half Price Books Inc., Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_416293989
Quantità: 1 disponibili
Da: ThriftBooks-Atlanta, AUSTELL, GA, U.S.A.
Paperback. Condizione: Good. No Jacket. Pages can have notes/highlighting. Spine may show signs of wear. ~ ThriftBooks: Read More, Spend Less 3.03. Codice articolo G1565923359I3N00
Quantità: 1 disponibili
Da: HPB-Ruby, Dallas, TX, U.S.A.
paperback. Condizione: Very Good. Connecting readers with great books since 1972! Used books may not include companion materials, and may have some shelf wear or limited writing. We ship orders daily and Customer Service is our top priority! Codice articolo S_421227448
Quantità: 1 disponibili