See buying choices for this item to see if it's one of the millions that are eligible for Amazon Prime.

26 used & new from $0.53

Have one to sell? Sell yours here
 
 
Oracle PL/SQL Interactive Workbook
 
See larger image
 
Tell the Publisher!
I’d like to read this book on Kindle

Don’t have a Kindle? Get yours here.
 
  

Oracle PL/SQL Interactive Workbook (Paperback)

by Benjamin Rosenzweig (Author), Elena Silvestrova (Author), Benjamin Rosenweig (Author)
3.4 out of 5 stars See all reviews (20 customer reviews)


Available from these sellers.


12 new from $11.95 14 used from $0.53
Also Available in: List Price: Our Price: Other Offers:
Paperback (2) $39.99 $30.39 46 used & new from $2.43

Customers Who Bought This Item Also Bought

Oracle SQL Interactive Workbook (2nd Edition) (Interactive Workbook Series)

Oracle SQL Interactive Workbook (2nd Edition) (Interactive Workbook Series)

by Alice Rischert
3.8 out of 5 stars (10)  $34.99
Oracle DBA Interactive Workbook (Interactive Workbook Series)

Oracle DBA Interactive Workbook (Interactive Workbook Series)

by Melanie Caffrey
Oracle PL/SQL For Dummies

Oracle PL/SQL For Dummies

by Michael Rosenblum
4.3 out of 5 stars (10)  $19.79
Explore similar items

Editorial Reviews

Product Description
Integrated book-and-Web learning solution teaches all of the Oracle PL/SQL skills you need, through hands-on, real-world labs, exercises, projects, and the Web-based training site. Softcover. DLC: PL/SQL (Computer program language)

From the Inside Flap
Introduction

The Oracle PL/SQL Interactive Workbook presents the Oracle PL/SQL programming language in a unique and highly effective format. It challenges you to learn Oracle PL/SQL by using it rather than by simply reading about it.

Just as a grammar workbook would teach you about nouns and verbs by first showing you examples and then asking you to write sentences, the Oracle PL/SQL workbook teaches you about cursors, procedures, and triggers by first showing you examples, and then asking you to create these objects yourself. Who This Book Is For

This book is intended for anyone who needs a quick but detailed introduction to programming with Oracle's PL/SQL language. The ideal readers are those with some experience with relational databases, with some Oracle experience, specifically with SQL and SQL*Plus, but with little or no experience with PL/SQL, or with most other programming languages.

The content of this book is based on the material that is taught in an Introduction to PL/SQL class at Columbia University's CTA program New York City. The student body is rather diverse, in that there are some students who have years of experience with IT and programming, but no experience with Oracle PL/SQL, and then there are those with absolutely no experience in IT or programming. The content of the book, like the class, is balanced to meet the needs of both extremes.How This Book Is Organized

The intent of this workbook is to teach you about Oracle PL/SQL by presenting you with a series of challenges followed by detailed solutions to those challenges. The basic structure of each chapter is as follows:Chapter

Lab

Exercises

Exercise Answers with Detailed Discussion

Self-Review Questions

Lab...

Test Your Thinking Questions

Each chapter contains interactive Labs that introduce topics about Oracle PL/SQL. The topics are discussed briefly and then explored though exercises, which are the heart of each Lab.

Each Exercise consists of a series of steps that you will follow to perform a specific task, along with questions that are designed to help you discover the important things about PL/SQL programming on your own. The answers to these questions are given at the end of the Exercises, along with more in-depth discussion of the concepts explored.

The Exercises are not meant to be closed book quizzes to test your knowledge. On the contrary, they are intended to act as your guide and walk you through a task. So, you are encouraged to flip back and forth from the Exercise question section to the Exercise answer section so that, if need be, you can read the answers and discussions as you go along.

At the end of each Lab is a series of multiple-choice Self-Review Questions. These are meant to be closed book quizzes to test that you have the Lab material. The answers to these questions appear in Appendix A. There are also additional Self-Review Questions at this book's companion Web site, found at phptr/rosenzweig

Finally, at the end of each chapter you will find a Test Your Thinking section, which consists of a series of projects designed to solidify all of the skills you have learned in the chapter. If you have successfully completed all of the Labs in the chapter, you should be able to tackle these projects with few problems. You will find guidance and/or solutions to these at the companion Web site.

The chapters should be completed in sequence because PL/SQL builds itself chapter by chapter. Additionally, many of the files you create and save in earlier chapters will be required in later chapters. In the end, all of the skills you have acquired, and files you have created, will come together in Chapter 13 and 14, "Packages" and "Stored Code," where you will create a package.About The Companion Web Site

The companion Web site is located at phptr/rosenzweig

Here you will find two very important things:

Files you will need before you begin reading the workbook.

Answers to the Test Your Thinking questions.

All of the Exercises and questions are based on a sample database called STUDENT. The files required to created and install this STUDENT schema are downloadable from the Web site.

The answers to the Test Your Thinking section will also be found at the web site.

In addition to required files and "Test Your Thinking" answers, the Web site will have many other features like additional review questions, a message board, and periodically updated information about the book.

You should visit the companion Web site and download the required files before starting the Labs and Exercises.What You'll Need

There are software programs as well as knowledge requirements necessary to complete the exercise sections of the workbook.Software

Oracle8

SQL*Plus

Access to the WWW

Windows 95/98 or NT 4.0Oracle8

Oracle8 is Oracle's RDBMS and its flagship product. You can use either Oracle Personal Edition or Oracle Enterprise Edition. If you use Oracle Enterprise Edition, this can be running on a remote server or locally on your own machine. Oracle 8.0.5 Enterprise Edition running locally was used to create the exercises for this book but subsequent versions should be compatible (the web site will also have scripts to create a database that will function for Oracle 7.3 and above).

Additionally, you should have access to and be familiar with SQL*Plus. This book was used running SQL*Plus version 8.0.5.

You have a number of options for how to edit and run scripts from SQL*Plus. There are also many third-party programs to edit and debug PL/SQL. SQL*Plus is used throughout this book, since SQL*Plus comes with the Oracle Personal Edition and Enterprise Edition.SQL*PLUS

You should be familiar with using SQL*Plus to execute SQL statements (if not then refer to the other book in the Prentice Hall Interactive Oracle Series on this topic Morrison/Rishchert's Oracle Interactive Workbook: SQL). There are a few key differences between executing SQL statement in SQL*Plus and executing PL/SQL statements in SQL*Plus. You will be introduced to these differences so that you can work with the exercises in this book.

You can end an SQL Command in SQL*Plus in one of three ways: 1) with a semicolon (;) 2) with a backslash (/) on a line by itself or 3) with a blank line. The semicolon (;) tells SQL*Plus that you want to run the command that you have just entered. You type the semicolon at the end of the SELECT statement and then press return. SQL*Plus will process what is in the SQL Buffer.* FOR EXAMPLESQL> select sysdate 2 from dual 3 ;SYSDATE---------24-NOV-99SQL>The SQL Buffer

SQL*Plus will store the SQL command or PL/SQL block that you have most recently entered in an area of memory known as the SQL Buffer. The SQL Buffer will remain unchanged until you enter a new command or exit your SQL*Plus session. You can easily edit the contents of the SQL Buffer by typing EDIT at the SQL prompt. The default text editor will open with the contents of the SQL Buffer. You can edit the file and then exit the editor. This will cause the contents of the SQL Buffer to change. SQL*Plus commands such as SET SERVEROUTPUT ON are not captured into the SQL Buffer nor does SQL*Plus store the semicolon or the slash you type to execute a command in the SQL buffer. When you create stored procedures, functions or packages you begin with the CREATE command. When you begin a PL/SQL block, you start by entering the word DECLARE or BEGIN. Typing either BEGIN, DECLARE or CREATE will put the SQL*Plus session into PL/SQL mode.Running PL/SQL Blocks in SQL*Plus

Once you are in PL/SQL mode, you will not be able to end the block in the same manner that you ended a SQL block. The semicolon (;) can be used multiple times in a single PL/SQL subprogram, thus when you end a line with a semicolon you will not terminate the PL/SQL subprogram. You can terminate the PL/SQL subprogram by entering a period(.). This will end the block and leave the block in the SQL Buffer, but it will not execute the subprogram. You have a choice, to enter EDIT and edit the program, or execute the subprogram with a backslash (/) or an RUN. A semicolon (;) will not execute these SQL commands as it does other SQL commands.

You might enter and execute a PL/SQL subprogram as follows:SQL> BEGIN 2

DBMS_OUTPUT.PUT_LINE('This is a PL/SQL Block'); 3 END; 4 .SQL> /This is a PL/SQL BlockPL/SQL procedure successfully completed.SQL>

If you run a script file that you have saved on your computer, you must remember to complete your program with a period(.). If you simply want to put the code into the SQL Buffer you can end the script with a backslash (/) which will execute the file.SQL> @scriptFilename.sql

The failure to end your PL/SQL block with a period (.) or a backslash (/) will prevent your block from executing.Windows 95/98 or NT 4.0

The SQL*Plus development environment is available on a number of different operating system platforms including Microsoft Windows and various flavors of UNIX. The exercises and examples in this workbook were created using Microsoft Windows NT 4.0 with service pack 3. Therefore, they are geared more for those working in

See all Editorial Reviews


Product Details

  • Paperback: 447 pages
  • Publisher: Pearson Education; 1st edition (March 25, 2000)
  • Language: English
  • ISBN-10: 0130157430
  • ISBN-13: 978-0130157430
  • Product Dimensions: 9.7 x 7 x 1.3 inches
  • Shipping Weight: 2 pounds
  • Average Customer Review: 3.4 out of 5 stars See all reviews (20 customer reviews)
  • Amazon.com Sales Rank: #1,303,800 in Books (See Bestsellers in Books)

    Popular in this category: (What's this?)

    #91 in  Books > Computers & Internet > Databases > Oracle > PL & SQL

What Do Customers Ultimately Buy After Viewing This Item?

Oracle PL/SQL Interactive Workbook
80% buy the item featured on this page:
Oracle PL/SQL Interactive Workbook 3.4 out of 5 stars (20)
Oracle PL/SQL by Example (4th Edition) (Prentice Hall Professional Oracle Series)
20% buy
Oracle PL/SQL by Example (4th Edition) (Prentice Hall Professional Oracle Series) 4.1 out of 5 stars (8)
$52.29

Tag this product

 (What's this?)
Think of a tag as a keyword or label you consider is strongly related to this product.
Tags will help all customers organize and find favorite items.
Your tags: Add your first tag
 
Help others find this product — tag it for Amazon search
No one has tagged this product for Amazon search yet. Why not be the first to suggest a search for which it should appear?

Sell a Digital Version of This Book in the Kindle Store

If you are a publisher or author and hold the digital rights to a book, you can sell a digital version of it in our Kindle Store. Learn more

 

Customer Reviews

20 Reviews
5 star:
 (9)
4 star:
 (2)
3 star:
 (1)
2 star:
 (3)
1 star:
 (5)
 
 
 
 
 
Average Customer Review
3.4 out of 5 stars (20 customer reviews)
 
 
 
 
Share your thoughts with other customers:
Most Helpful Customer Reviews

 
37 of 37 people found the following review helpful:
5.0 out of 5 stars Better than Oracle's Beginning SQL PL/SQL Course!, May 12, 2000
By Tante Waileka "The Truth shall Set Ye Free" (San Francisco - Atlanta - Honolulu - Chicago) - See all my reviews
I paid 2000 bucks for Oracle's classroom training, then I bought this book and guess what? This book is better! Because it also goes beyond the beginning Oracle class to cover what is in the "Program Units" class as well. As for the website, Prentice Hall changed their author url's but now they have a 'redirect' to the correct site, which happens to be (...) . Again, save your money if you have to pay for your courses yourself, this book replaces "Beginning SQL & PL/SQL", "Advanced SQL", and "Program Units". There! I just saved you (2000+1700+895)=$4595.00 plus hotel and plane fare and lost wages/vacation time!

Aunty Violet

Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
19 of 19 people found the following review helpful:
4.0 out of 5 stars For the student without a teacher, April 20, 2000
By Justin S. Stuparitz (Falls Church, VA) - See all my reviews
(REAL NAME)   
This book is excellent for someone new to programming and/or Oracle PL/SQL. The book contains one lab after another to allow the true beginner to practice concepts. Cursors, exceptions, procedures, functions, packages and triggers are all covered. Keep in mind that this is not a reference book. To learn the topics that are covered in this book you will have to work the labs. Combining this book with a reference book will set you on the right foot. As of this writing (April 20, 2000), the website for the book ( ) was not up so I can't comment on that.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)



 
10 of 10 people found the following review helpful:
5.0 out of 5 stars This is a good book!, October 18, 2001
By Dolfandave "dolfandave" (alhambra, ca USA) - See all my reviews
This book is excellent for getting into PL/SQL but keep in mind you should have some knowledge of SQL first. That is the sequence for Oracle. If you want to be a Developer you study SQL first, then PL/SQL, then Forms and so forth. I took two classes on SQL first then bought this book and then signed up for a PL/SQL course at a local college. The book helped me get ahead of the class and now that I am a few weeks into the course I study and review the book and it makes much more sense that way. Also, the text for the coures is Fuerstein's PL/SQL text. That is an additional source but the overall experience has been very positive. There are some typos but if you understand the language you can weed them out.
Comment Comment | Permalink | Was this review helpful to you? Yes No (Report this)


Share your thoughts with other customers: Create your own review
 
 
 
Most Recent Customer Reviews

5.0 out of 5 stars Great book for a beginning SQL user
This book is very easy to follow, and you can learn SQL very quickly. Just remember, you do need access to an Oracle database to do the exercises.
Published on March 15, 2007 by Izabella Young

1.0 out of 5 stars An exercise in frustration
I bought this in hoping to find a PL/SQL book that could give me a real life lab exercise. I gave up on this book. Read more
Published on April 13, 2004 by Truth Seeker

1.0 out of 5 stars Awful
This book is awful. Elena, the author, mostly read from the textbook. Anyone can read from the textbook. Why buy this book if the author is just going to read from the text? Read more
Published on February 4, 2004 by V. Tsao

1.0 out of 5 stars Poorly structured
If you like a structured lesson, then you will find this confusing. Usually you expect a lesson then examples and labs. In this book the lessons are mixed in the labs. Read more
Published on June 11, 2003

5.0 out of 5 stars BEST Intro to Intermediate PL/SQL Book on the Market
With over twenty years in large scale IT development using Java/C++/C/Assembly languages on Unix/Windows 2000/NT platforms, but a neophyte with PL/SQL, I needed a PL/SQL package... Read more
Published on January 23, 2003 by David Leon

5.0 out of 5 stars Excellent Workbok
Overall this book is is great for someone new to programming and/or Oracle PL/SQL. The book contains one lab after another to allow the true beginner to practice concepts. Read more
Published on November 9, 2002

2.0 out of 5 stars Almost Horrible
Grammar mistakes that lead you to wonder exactly what they are attempting to say, not systematic in explaining all the parameters/options of a command/function, and only skimming... Read more
Published on May 9, 2002 by xman

1.0 out of 5 stars Good idea, terrible execution
The idea of an interactive workbook is good, but this book is so riddled with errors, undefined terms, and grammatical/language errors as to be an embarrassment to the publisher... Read more
Published on April 24, 2002

1.0 out of 5 stars A very bad start!
I don't know how the other reviewers got started with the book, if you must download anything from the authors website; I wasn't able to do that. Read more
Published on March 27, 2002

5.0 out of 5 stars Excellent Book!!!!!
This is another awesome book by the PTR Oracle Series. First you need to read the first one, Oracle SQL by Alice Morrison, then you can read this one. Read more
Published on March 4, 2002

Only search this product's reviews



Customer Discussions

 Beta (What's this?)
New! See all customer communities, and bookmark your communities to keep track of them.
This product's forum (0 discussions)
  Discussion Replies Latest Post
  No discussions yet

Ask questions, Share opinions, Gain insight
Start a new discussion
Topic:
First post:
Prompts for sign-in
  [Cancel]


   
Related forums


Product Information from the Amapedia Community

Beta (What's this?)



Look for Similar Items by Category


Bath Wonders from LUSH

LUSH bath bombs
Find bath bombs, bath melts, shower jellies, and more great gifts for yourself (or a friend!) from LUSH Fresh Handmade Cosmetics.

Shop LUSH now

 

Best Books of 2008

Best of 2008
Find our top 100 editors' picks as well as customers' favorites in dozens of categories in our Best Books of 2008 Store.
 

Shop for Fish Tape in Home Improvement

Shop for fish tape
Use fish tape to easily string electrical, phone, and data wires and cables behind finished walls and ceilings.

Shop for fish tape

 

Introducing Subscribe & Save

Get automatic reorders plus extra savings on items you use frequently, including coffee, shampoo, and laundry detergent, with our new Subscribe & Save program.

More about Subscribe & Save

 

 

Feedback

If you need help or have a question for Customer Service, contact us.
 Would you like to update product info or give feedback on images?
Is there any other feedback you would like to provide?

Your comments can help make our site better for everyone.



Where's My Stuff?

Shipping & Returns

Need Help?

Your Recent History

  (What's this?)
You have no recently viewed items or searches.

After viewing product detail pages or search results, look here to find an easy way to navigate back to pages you are interested in.

Look to the right column to find helpful suggestions for your shopping session.

Continue shopping: Top Sellers
Glenn Beck's Common Sense
Glenn Beck's Common Sense
Darkfever
Darkfever by Karen Marie Moning
Finger Lickin' Fifteen
Finger Lickin' Fifteen by Janet Evanovich

Conditions of Use | Privacy Notice © 1996-2009, Amazon.com, Inc. or its affiliates