Oreilly - Oracle PL/SQL Programming Fundamentals LiveLessons - 9780134213033
Oreilly - Oracle PL/SQL Programming Fundamentals LiveLessons
by | Released June 2015 | ISBN: 0134213033


4+ Hours of Video InstructionOverviewOracle PL/SQL Programming Fundamentals LiveLessons covers the basics of Oracle's language extension for SQL and the Oracle relational database. The focus is to give students with a working knowledge of SQL the ability to develop Oracle procedures, functions, and packages using the PL/SQL language.DescriptionIn this LiveLessons course, Oracle ACE Director Dan Hotka will teach you how to work with existing code and create new programs. Along the way, you will learn both conditional and looping syntax and techniques, error handling and error processing, plus how to work with script files, procedures, functions and packages (a collection of procedures and functions). This hands-on course also covers how to use the PL/SQL debugger and the PL/SQL profiler and how to apply PL/SQL performance tips.The source code repository for this LiveLesson can be downloaded from www.informit.com/title/9780134214443.About the InstructorDan Hotka is a training specialist and an Oracle ACE director who has more than 37 years in the computer industry and more than 31 years of experience with Oracle products. His experience with the Oracle RDBMS dates back to the Oracle V4.0 days. Dan enjoys sharing his knowledge of the Oracle RDBMS. Dan is well published with 12 Oracle books and well over 200 published articles. He is also the video author for Oracle SQL Performance Tuning for Developers LiveLessons. He is frequently published in Oracle trade journals, regularly blogs, and speaks at Oracle conferences and user groups around the world. Visit his website at www.DanHotka.com.Skill LevelBeginnerLearn How ToUse the PL/SQL programming languageUnderstand both conditional and looping syntax and techniquesUnderstand error handling and error processingWork with script files, procedures, functions and packages (a collection of procedures and functions)Use two useful tools: PL/SQL debugger and the PL/SQL profilerUnderstand additional PL/SQL performance tipsWho Should Take This CourseOracle programmersPeople with a need to be able to read PL/SQL codeCourse RequirementsWorking knowledge of the SQL query languageTable of ContentsIntroductionLesson 1: PL/SQL Course Overview covers the course pre-requisites, database objects, and the tools that are used throughout these lessons.Lesson 2: Oracle PL/SQL Overview reviews the Oracle RDBMS architecture from a PL/SQL tuning point of view. This information is referenced throughout the course. The lesson then introduces the major components of the PL/SQL programming environment.Lesson 3: PL/SQL Basics and Variables covers the basics of PL/SQL and provides a working knowledge of PL/SQL variables.Lesson 4: Logic Flow covers flow control and PL/SQL starting with IF/THEN/ELSE logic and the useful CASE statement. Then, it introduces the attendee to the Looping logic.Lesson 5: PL/SQL Cursors introduces you to PL/SQL cursor management. It covers implicit cursors and explores explicit cursors.Lesson 6: PL/SQL Exception Handling begins with an introduction to PL/SQL exception handling. It covers the basic exception clause syntax, then covers implicit and explicit error handling. Next, it shows useful techniques such as using SQLCODE and SQLERRM. The lesson ends with the coverage on User named and application exceptions.Lesson 7: PL/SQL Procedures and Functions begins with an introduction to named blocks or PL/SQL procedures and functions. It explores the PL/SQL procedure basic syntax and examines the PL/SQL function basic syntax. The remainder of the lessons illustrates useful examples and parameter passing.Lesson 8: PL/SQL Packages begins with an introduction to PL/SQL packages. It then covers the syntax and executing code in packages.Lesson 9: PL/SQL Triggers first introduces PL/SQL Triggers, then explores the syntax for these triggers. Next, it covers the restrictions and order of processing and concludes with useful examples and tips.Lesson 10: PL/SQL New Features covers some of the useful PL/SQL new features introduced over the years.Lesson 11: PL/SQL Collections explores PL/SQL collections, or array processing. It introduces what a collection is and the three types that PL/SQL supports, explores the syntax of the three collection types, and shows code examples for each. The last section is the gas pedal for collections: bulk binding. This syntax allows for collections to be rapidly populated from Oracle database tables.Lesson 12: PL/SQL Debugger, PL/SQL Profiler, PL/SQL Tuning Tips completes the PL/SQL story with an introduction of the PL/SQL debugger, PL/SQL profiler, and a lecture on PL/SQL tuning tips. Next it covers both the TOAD and the SQL developer debuggers including a live demonstration of both debuggers. Then it details the PL/SQL profiler and provides live demonstrations of both the Toad PL/SQL profiler and a character-mode PL/SQL profiler using SQL*Plus. The lesson concludes with some useful PL/SQL coding tips.SummaryAbout LiveLessons Video TrainingThe LiveLessons Video Training series publishes hundreds of hands-on, expert-led video tutorials covering a wide selection of technology topics designed to teach you the skills you need to succeed. This professional and personal technology video series features world-leading author instructors published by your trusted technology brands: Addison-Wesley, Cisco Press, IBM Press, Pearson IT Certification, Prentice Hall, Sams, and Que. Topics include: IT Certification, Programming, Web Development, Mobile Development, Home and Office Technologies, Business and Management, and more. View all LiveLessons on InformIT at: http://www.informit.com/livelessons Show and hide more
  1. Introduction
    • Oracle PL/SQL Programming Fundamentals LiveLessons: Introduction 00:05:21
  2. Lesson 1: PL/SQL Course Overview
    • Learning Objectives 00:00:18
    • 1.1 Understand the course pre-requisites 00:01:11
    • 1.2 Learn the Oracle database objects to be used in this course 00:02:33
    • 1.3 Review the command-line SQL*Plus tool 00:03:48
    • 1.4 Review SQL Developer tool 00:03:28
    • 1.5 Review TOAD tool 00:03:04
    • Put it all together 00:00:52
  3. Lesson 2: Oracle PL/SQL Overview
    • Learning Objectives 00:00:27
    • 2.1 Review Oracle architecture 00:04:02
    • 2.2 Review PL/SQL overview 00:07:58
    • Put it all together 00:00:43
  4. Lesson 3: PL/SQL Basics and Variables
    • Learning Objectives 00:00:18
    • 3.1 Explore PL/SQL basics 00:05:03
    • 3.2 Use PL/SQL variables 00:22:38
    • Put it all together 00:00:33
  5. Lesson 4: Logic Flow
    • Learning Objectives 00:00:21
    • 4.1 Understand IF/THEN/ELSE logic 00:09:14
    • 4.2 Explore the CASE statement 00:06:28
    • 4.3 Utilize looping syntax 00:12:41
    • Put it all together 00:00:16
  6. Lesson 5: PL/SQL Cursors
    • Learning Objectives 00:00:18
    • 5.1 Introduce PL/SQL cursors and the implicit cursor 00:05:01
    • 5.2 Explore explicit cursors 00:10:31
    • Put it all together 00:00:48
  7. Lesson 6: PL/SQL Exception Handling
    • Learning Objectives 00:00:33
    • 6.1 Introduce PL/SQL exceptions 00:02:06
    • 6.2 Explore PL/SQL exception basic syntax 00:03:44
    • 6.3 Discover implicit vs explicit exceptions 00:04:32
    • 6.4 Work with SQLCODE and SQLERRM features 00:02:43
    • 6.5 Understand user-defined exceptions 00:02:12
    • 6.6 Use application-defined exceptions 00:05:30
    • Put it all together 00:01:08
  8. Lesson 7: PL/SQL Procedures and Functions
    • Learning Objectives 00:00:30
    • 7.1 Introduce PL/SQL procedures and functions 00:02:08
    • 7.2 Explore PL/SQL procedures 00:04:33
    • 7.3 Understand PL/SQL functions 00:06:05
    • 7.4 Work with parameter passing 00:15:06
    • Put it all together 00:00:42
  9. Lesson 8: PL/SQL Packages
    • Learning Objectives 00:00:18
    • 8.1 Introduce PL/SQL packages 00:02:56
    • 8.2 Explore the package syntax 00:03:13
    • 8.3 Review executing code in packages 00:07:54
    • Put it all together 00:00:30
  10. Lesson 9: PL/SQL Triggers
    • Learning Objectives 00:00:23
    • 9.1 Introduce PL/SQL triggers 00:03:25
    • 9.2 Explore the trigger syntax 00:03:54
    • 9.3 Review the order of trigger processing and other restrictions 00:02:44
    • 9.4 Work with useful examples 00:08:00
    • Put it all together 00:00:49
  11. Lesson 10: PL/SQL New Features
    • Learning Objectives 00:00:15
    • 10.1 Introduce PL/SQL new features 00:00:40
    • 10.2 Explore the new features with tips and techniques 00:13:23
    • Put it all together 00:00:47
  12. Lesson 11: PL/SQL Collections
    • Learning Objectives 00:00:36
    • 11.1 Introduce PL/SQL collections 00:01:25
    • 11.2 Explore the collection syntax 00:03:03
    • 11.3 Review code examples 00:05:13
    • 11.4 Explore bulk binding techniques 00:07:25
    • Put it all together 00:00:33
  13. Lesson 12: PL/SQL Debugger, PL/SQL Profiler, PL/SQL Tuning Tips
    • Learning Objectives 00:00:43
    • 12.1 Introduce PL/SQL debugging, PL/SQL profiling, PL/SQL coding tips 00:00:22
    • 12.2 Explore the TOAD debugger 00:08:39
    • 12.3 Explore the SQL developer debugger 00:05:41
    • 12.4 Review the PL/SQL profiler 00:01:44
    • 12.5 Use the PL/SQL profiler with SQL*Plus 00:05:26
    • 12.6 Use the TOAD PL/SQL profiler 00:03:53
    • 12.7 Review PL/SQL coding tips 00:09:36
    • Put it all together 00:00:39
  14. Oracle PL/SQL Programming Fundamentals LiveLessons: Summary
    • Summary 00:00:47
  15. Show and hide more

    Oreilly - Oracle PL/SQL Programming Fundamentals LiveLessons

    9780134213033.oracle.plsql.programming.OR.part1.rar

    9780134213033.oracle.plsql.programming.OR.part2.rar


 TO MAC USERS: If RAR password doesn't work, use this archive program: 

RAR Expander 0.8.5 Beta 4  and extract password protected files without error.


 TO WIN USERS: If RAR password doesn't work, use this archive program: 

Latest Winrar  and extract password protected files without error.


 Coktum   |  

Information
Members of Guests cannot leave comments.


SermonBox - Seasonal Collection

SermonBox - The Series Pack Collection

Top Rated News

  • Christmas Material
  • Laser Cut & Print Design Elements Bundle - ETSY
  • Daz3D - All Materials - SKU 37000-37999
  • Cgaxis - All Product - 2019 - All Retail! - UPDATED!!!
  • DigitalXModels Full Collections
  • Rampant Design Tools Full Collections Total: $4400
  • FilmLooks.Com Full Collection
  • All PixelSquid Product
  • The Pixel Lab Collection
  • Envato Elements Full Sources- 3200+ Files
  • Ui8.NET Full Sources
  • The History of The 20th Century
  • The Dover Collections
  • Snake Interiors Collections
  • Inspirational Collections
  • Veer Fancy Collections
  • All Ojo Images
  • All ZZVE Collections
  • All Sozaijiten Collections
  • All Image Broker Collections
  • Shuterstock Bundle Collections
  • Tattoo Collections
  • Blend Images Collections
  • Authors Tuorism Collections
  • Motion Mile - Big Bundle
  • PhotoBacks - All Product - 2018
  • Dekes Techniques - Photoshop & Illustrator Course - 1 to 673
Telegram GFXTRA Group
Udemy - Turkce Gorsel Ogrenme Setleri - Part 2
Videohive Wow Pack Series


rss