|Listed in category:
Have one to sell?

Learning Oracle PL/SQL : Oracle Development Languages Paperback

Free US Delivery | ISBN:0596001800
Condition:
Very Good
Used book that is in excellent condition. May show signs of wear or have minor defects. 100% ... Read moreabout condition
Price:
US $8.02
ApproximatelyC $11.00
Breathe easy. Returns accepted.
Shipping:
Free Economy Shipping. See detailsfor shipping
Located in: Mishawaka, Indiana, United States
Delivery:
Estimated between Mon, Jun 3 and Wed, Jun 5 to 43230
Delivery time is estimated using our proprietary method which is based on the buyer's proximity to the item location, the shipping service selected, the seller's shipping history, and other factors. Delivery times may vary, especially during peak periods.
Returns:
30 days return. Buyer pays for return shipping. See details- for more information about returns
Payments:
     

Shop with confidence

eBay Money Back Guarantee
Get the item you ordered or your money back. 

Seller information

Registered as a Business Seller
Seller assumes all responsibility for this listing.
eBay item number:226135249878
Last updated on May 28, 2024 23:02:16 EDTView all revisionsView all revisions

Item specifics

Condition
Very Good
A book that does not look new and has been read but is in excellent condition. No obvious damage to the cover, with the dust jacket (if applicable) included for hard covers. No missing or damaged pages, no creases or tears, and no underlining/highlighting of text or writing in the margins. May be very minimal identifying marks on the inside cover. Very minimal wear and tear. See the seller’s listing for full details and description of any imperfections. See all condition definitionsopens in a new window or tab
Seller Notes
“Used book that is in excellent condition. May show signs of wear or have minor defects. 100% ...
Book Title
Learning Oracle PL/SQL : Oracle Development Languages Paperback
ISBN
9780596001803
Publication Year
2001
Type
Textbook
Format
Trade Paperback
Language
English
Publication Name
Learning Oracle PL/Sql : Oracle Development Languages
Item Height
1.1in
Author
Steven Feuerstein, Bill Pribyl
Item Length
9.2in
Publisher
O'reilly Media, Incorporated
Item Width
7in
Item Weight
24.2 Oz
Number of Pages
426 Pages

About this product

Product Information

PL/SQL, Oracle's programming language for stored procedures, delivers a world of possibilities for your database programs. PL/SQL supplements the standard relational database language, SQL, with a wide range of procedural features, including loops, IF-THEN statements, advanced data structures, and rich transactional control--all closely integrated with the Oracle database server.Knowing where to start with Oracle's procedural language is not always obvious to a newcomer, especially considering the language's feature set and the sheer size of the official documentation (not to mention Oracle's ever-increasing number of pre-built PL/SQL programs). But Learning Oracle PL/SQL offers the signposts and guidance you need to come up to speed on the language, delivered in a manageable number of pages while covering all the essentials.Topics include: PL/SQL--what is it, and why use it? Why use PL/SQL instead of Java? Syntax and examples of all core language constructs Creating, using, and reusing stored procedures, functions, and packages Building web-based applications using PL/SQL features available "out of the box" (such as PL/SQL Server Pages) Securing PL/SQL programs against attack Benefits of third-party developer tools and integrated development environments Connecting PL/SQL to email, Java, and the Internet Meticulously crafted with all-new examples downloadable from examples.oreilly.com/learnoracle, the book addresses language features available in all versions of Oracle, from Oracle7 to Oracle8i to Oracle9i. Learning Oracle PL/SQL was written by PL/SQL experts Bill Pribyl and Steven Feuerstein, whose easy-to-read style and attention to detail has made other O'Reilly books (such as the bestselling Oracle PL/SQL Programming ) very popular among Oracle developers worldwide. Learning Oracle PL/SQL is meant for a wide range of target audiences, including both beginning programmers and those already experienced with other programming languages. Whether you are a new developer, a crossover programmer from another database system, or a new database administrator who needs to learn PL/SQL, this book will get you well on your way. It is the perfect introduction to Oracle PL/SQL Programming , also by Pribyl and Feuerstein.

Product Identifiers

Publisher
O'reilly Media, Incorporated
ISBN-10
0596001800
ISBN-13
9780596001803
eBay Product ID (ePID)
1907226

Product Key Features

Author
Steven Feuerstein, Bill Pribyl
Publication Name
Learning Oracle PL/Sql : Oracle Development Languages
Format
Trade Paperback
Language
English
Publication Year
2001
Type
Textbook
Number of Pages
426 Pages

Dimensions

Item Length
9.2in
Item Height
1.1in
Item Width
7in
Item Weight
24.2 Oz

Additional Product Features

Lc Classification Number
Qa76.73.P258p75 2002
Table of Content
Copyright;Dedication;Preface; Is This Book for You?; Other Books in This Series; Why This Book?; Which Oracle and PL/SQL Versions?; Organization of This Book; Conventions Used in This Book; Comments and Questions; Acknowledgments;Chapter 1: PL/SQL: What, When, and Where; 1.1 What Is PL/SQL?; 1.2 Why Use PL/SQL?; 1.3 What You Need to Get Started with PL/SQL;Chapter 2: Fundamentals; 2.1 PL/Lingo; 2.2 Running Your First PL/SQL Program; 2.3 Introduction to Program Structure; 2.4 Variables; 2.5 Common Operators; 2.6 Conditional Logic; 2.7 Executing in Circles: Loop Statements; 2.8 Code Formatting: Requirements and Guidelines; 2.9 Some Advanced Fundamentals;Chapter 3: Let's Code!; 3.1 Some Background on the Example; 3.2 A First Programming Exercise; 3.3 Retrieving a Book Count with a Function; 3.4 Make Your Code Resilient; 3.5 Using PL/SQL Packages to Organize Code; 3.6 Going to the Next Level; 3.7 Now What?;Chapter 4: Go Web, Young Man; 4.1 Introduction to HTML; 4.2 Using PL/SQL to Create Web Pages; 4.3 What Else?;Chapter 5: Fetch!; 5.1 What's the Big Deal?; 5.2 A Simple-Minded Approach to Retrieving One Row; 5.3 Retrieving More than One Row Using a Cursor; 5.4 Presenting Query Results via a Web Page; 5.5 Building a Web-Based Search Page Using Dynamic SQL; 5.6 Advanced Data Retrieval Topics;Chapter 6: Keeping House; 6.1 Organize Your Code; 6.2 Use Tools to Write Code Effectively;Chapter 7: Security: Keep the Bad Guys Out; 7.1 Oracle Security Primer; 7.2 Organizing Accounts to Improve Security; 7.3 Analyzing the Library System's Requirements; 7.4 Keeping a Trail of Database Changes; 7.5 Special Security Topics for PL/SQL Developers;Chapter 8: Communicating with the Outside World; 8.1 Sending Internet Email from PL/SQL; 8.2 Using the Mail Sender in the Library System; 8.3 Receiving Email Inside the Database; 8.4 Fetching Data from a Remote Web Site; 8.5 Integration with Other Languages;Chapter 9: Intermediate Topics and Other Diversions; 9.1 Riding the Software Lifecycle; 9.2 Lists o' Stuff (Collections) in PL/SQL; 9.3 Exception-Handling Packages; 9.4 Transaction Control; 9.5 The PL/SQL Compiler; 9.6 Managing Patron and Librarian Privileges; 9.7 Still More PL/SQL Features;Chapter 10: Afterword: "Making Good" of Database Programming; 10.1 The Evidence; 10.2 The Problem; 10.3 Answering the Objections; 10.4 What to Do;Glossary;Colophon;
Copyright Date
2001
Target Audience
Scholarly & Professional
Topic
Programming Languages / General, Programming Languages / Sql, Data Processing, Databases / Data Mining
Lccn
2002-280669
Dewey Decimal
005.75/85
Dewey Edition
21
Illustrated
Yes
Genre
Computers

Item description from the seller

Better World Books

Better World Books

98.7% positive feedback
12.8M items sold

Detailed seller ratings

Average for the last 12 months

Accurate description
4.9
Reasonable shipping cost
5.0
Shipping speed
5.0
Communication
5.0

Seller feedback (4,093,317)

z***z (602)- Feedback left by buyer.
Past 6 months
Verified purchase
🏆 SUPER STAR 🤩 AMAZING PHOTOS 🎯 ACCURATE DESCRIPTION ✏️ GENUINE PRODUCTS 💎 HIGH QUALITY 🍯 SUPER PRICES 💰 EASY TO WORK WITH 🍰 ECONOMY HANDLING ⏱️ FAST SHIPPING 🚀 BUBBLE PACKAGE 📦 ARRIVED WITHIN DAYS 🌎 EXCEPTIONAL COMMUNICATION 🎙️ OUTSTANDING CUSTOMER SERVICE 🛎️ GREAT SENSE OF HUMOR 🍿 TOTAL ASSET TO THE EBAY-ECO SYSTEM 🥇 SAVED SELLER 🎱 PROMT REPLY FOR RETURNS 🎯 WOULD BUY FROM AGAIN 🧲 UNDER PROMISES OVER DELIVERS ⛳️ MADE ME VERY HAPPY 🌈 LEFT POSITIVE FEEDBACK 🌼 THANK YOU! 😇 A+++
e***n (415)- Feedback left by buyer.
Past 6 months
Verified purchase
Great prices. Book as described!! Quick processing and excellent communication. Great packaging and delivery to shipping!! Excellent choice in shipper!! Was able to track the progress of package ETA. Package actually arrived early!! THANK YOU!! AWESOME AAA+++ Service!!! Highly recommend this seller!! Will buy from you again!!
c***m (327)- Feedback left by buyer.
Past 6 months
Verified purchase
AAA+++; Excellent Service; Great Pricing; Fast Delivery-Faster Than Expected -1 Week to Hawaii!; 5 Hardcover Books in Great Condition--As Described ; TLC Packaging; Excellent Seller Communication, Sends updates . Highly Recommended!, Thank you very much!

Product ratings and reviews

No ratings or reviews yet
Be the first to write the review.