file-type

Oracle PL-SQL编程第五版(2009)

下载需积分: 45 | 15.06MB | 更新于2024-07-28 | 71 浏览量 | 1 下载量 举报 收藏
download 立即下载
"Oracle PL-SQL Programming 5th Edition (2009) 是一本由 Steven Feuerstein 和 Bill Pribyl 合著的专业书籍,主要针对Oracle数据库的PL/SQL编程语言进行深入讲解。该书由 O'Reilly Media 出版,是PL/SQL编程领域的经典著作之一,适合教育、商业和销售推广使用。" 本书是Oracle PL/SQL编程的第五版,自1995年首次发行以来,不断更新以适应技术的发展,提供最新的编程知识。作者 Steven Feuerstein 和 Bill Pribyl 在数据库和PL/SQL领域具有深厚的经验,他们的合作确保了内容的专业性和实用性。 PL/SQL是Oracle数据库系统中用于编写存储过程、函数、触发器等数据库程序的编程语言。这本书详细介绍了如何有效地使用PL/SQL进行数据库开发,包括基本语法、数据类型、控制结构、异常处理、游标、包、索引、表和视图的操作,以及高级主题如性能优化和并发控制。 书中可能涵盖了以下关键知识点: 1. **PL/SQL基础**:介绍PL/SQL的基本元素,如声明变量、常量、子程序和块结构,帮助读者建立扎实的编程基础。 2. **流程控制**:讲解IF-THEN-ELSE语句、CASE表达式、循环(WHILE、FOR、LOOP)等控制流程语句的使用。 3. **异常处理**:详述如何使用RAISE、EXCEPTION、WHENEVER等关键字来捕获和处理运行时错误。 4. **数据库操作**:探讨如何使用PL/SQL与数据库表格交互,包括INSERT、UPDATE、DELETE操作,以及如何创建和使用游标来处理查询结果。 5. **存储过程和函数**:阐述如何定义和调用存储过程和函数,以及如何将它们组织成包,以实现模块化和复用性。 6. **事务和并发控制**:讲解提交、回滚事务,以及使用锁定和乐观锁等方法处理并发问题。 7. **性能优化**:讨论查询优化、索引的使用、存储优化策略,以及如何通过分析和调整提升PL/SQL代码的执行效率。 8. **高级特性**:可能涉及PL/SQL的高级话题,如游标的高级用法、动态SQL、嵌套表格和对象类型等。 9. **案例研究**:提供实际应用示例,帮助读者理解如何在实际项目中应用所学知识。 10. **最佳实践**:分享作者的经验和技巧,帮助读者避免常见陷阱,遵循最佳编程习惯。 本书不仅适合初学者学习PL/SQL,也适合有经验的开发者作为参考手册,以深化对PL/SQL的理解和应用能力。通过阅读此书,读者能够掌握编写高效、可靠和可维护的Oracle数据库应用程序所需的技能。

相关推荐

filetype
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 Oracle's 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 indispensable reference for both novices and experienced Oracle programmers will help you: Get PL/SQL programs up and running quickly, with clear instructions for executing, tracing, testing, debugging, and managing PL/SQL code Optimize PL/SQL performance with the aid of a brand-new chapter in the fifth edition Explore datatypes, conditional and sequential control statements, loops, exception handling, security features, globalization and localization issues, and the PL/SQL architecture Understand and use new Oracle Database 11g features, including the edition-based redefinition capability, the function result cache, the new CONTINUE statement, fine-grained dependency tracking, sequences in PL/SQL expressions, supertype invocation from subtypes, and enhancements to native compilation, triggers, and dynamic SQL Use new Oracle Database 11g tools and techniques such as PL/Scope, the PL/SQL hierarchical profiler, and the SecureFiles technology for large objects Build modular PL/SQL applications using procedures, functions, triggers, and packages
filetype
作者:Steven Feuerstein, Bill Pribyl 出版日期:October 1, 2009 出版社:O'Reilly 页数:1226 ISBN:ISBN-10: 0596514468 ISBN-13: 978-0596514464 文件格式:PDF 文件大小:15.06 MB Review If you’re doing database application development in the Oracle environment, you’re going to have to know PL/SQL, the company’s extended query and update language. If you want your programs to exploit the special capabilities of Oracle software, you’ll need to know the language well. That’s where the third edition of Oracle PL/SQL Programming comes into play. It’s an absolutely comprehensive reference (as well as a rather extensive tutorial) on PL/SQL, ideally suited to answering your questions about how to perform some programming tasks and reminding you of the characteristics of functions, triggers, and other elements of the database programmer’s toolkit. The new edition covers calls to Java methods from within PL/SQL programs, autonomous transactions, object type inheritance, and the new Timestamp and XMLType data types. There’s also more information about server internals–the way PL/SQL programs are run–than before, better enabling readers to optimize their code for fast and safe execution. Steven Feuerstein takes care to explain, with prose and example code, the characteristics of PL/SQL elements. In explaining number conversions, for example, he explores Oracle’s different ways of formatting numbers, then details the behavior of the to_number function under different conditions (with and without a specified format model, and with National Language Support information attached). It’s a helpful approach that will have readers using the index to locate places in which Feuerstein mentions language elements of interest. –David Wall Topics covered: How to use Oracle PL/SQL in all its manifestations through Oracle9i. Fundamentals of program structure (loops, cases, exceptions, etc.) and execution get attention, as do data types, transaction management, triggers, and the object-oriented aspects of the language. There’s also coverage of calls to external Java and C programs. –This text refers to the Paperback edition. Product Description 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 Oracle’s 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 indispensable reference for both novices and experienced Oracle programmers will help you: Get PL/SQL programs up and running quickly, with clear instructions for executing, tracing, testing, debugging, and managing PL/SQL code Optimize PL/SQL performance with the aid of a brand-new chapter in the fifth edition Explore datatypes, conditional and sequential control statements, loops, exception handling, security features, globalization and localization issues, and the PL/SQL architecture Understand and use new Oracle Database 11g features, including the edition-based redefinition capability, the function result cache, the new CONTINUE statement, fine-grained dependency tracking, sequences in PL/SQL expressions, supertype invocation from subtypes, and enhancements to native compilation, triggers, and dynamic SQL Use new Oracle Database 11g tools and techniques such as PL/Scope, the PL/SQL hierarchical profiler, and the SecureFiles technology for large objects Build modular PL/SQL applications using procedures, functions, triggers, and packages
filetype
Product Description 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 Oracle’s 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 indispensable reference for both novices and experienced Oracle programmers will help you: Get PL/SQL programs up and running quickly, with clear instructions for executing, tracing, testing, debugging, and managing PL/SQL code Optimize PL/SQL performance with the aid of a brand-new chapter in the fifth edition Explore datatypes, conditional and sequential control statements, loops, exception handling, security features, globalization and localization issues, and the PL/SQL architecture Understand and use new Oracle Database 11g features, including the edition-based redefinition capability, the function result cache, the new CONTINUE statement, fine-grained dependency tracking, sequences in PL/SQL expressions, supertype invocation from subtypes, and enhancements to native compilation, triggers, and dynamic SQL Use new Oracle Database 11g tools and techniques such as PL/Scope, the PL/SQL hierarchical profiler, and the SecureFiles technology for large objects Build modular PL/SQL applications using procedures, functions, triggers, and packages
ZZABCDEF007
  • 粉丝: 0
上传资源 快速赚钱