0
Your cart

Your cart is empty

Browse All Departments
  • All Departments
Price
  • R100 - R250 (1)
  • R250 - R500 (1)
  • R500 - R1,000 (3)
  • R1,000 - R2,500 (2)
  • -
Status
Brand

Showing 1 - 7 of 7 matches in All Departments

Oracle PL/SQL Programming 6ed (Paperback, 6th Revised edition): Steven Feuerstein Oracle PL/SQL Programming 6ed (Paperback, 6th Revised edition)
Steven Feuerstein; Contributions by Bill Pribyl
R1,988 R1,594 Discovery Miles 15 940 Save R394 (20%) Ships in 9 - 17 working days

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 6th 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 12c, 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. It's an indispensable reference for both novices and experienced Oracle programmers.

MySQL Stored Procedure Programming (Paperback): Guy Harrison MySQL Stored Procedure Programming (Paperback)
Guy Harrison; Contributions by Steven Feuerstein
R1,099 R840 Discovery Miles 8 400 Save R259 (24%) Ships in 12 - 19 working days

The implementation of stored procedures in MySQL 5.0 a huge

milestone -- one that is expected to lead to widespread enterprise adoption of

the already extremely popular MySQL database. If you are serious about

building the web-based database applications of the future, you need to

get up to speed quickly on how stored procedures work -- and how to

build them the right way. This book, destined to be the bible of stored

procedure development, is a resource that no real MySQL programmer can

afford to do without.

In the decade since MySQL burst on the scene, it has become the

dominant open source database, with capabilities and performance

rivaling those of commercial RDBMS offerings like Oracle and SQL

Server. Along with Linux and PHP, MySQL is at the heart of millions of

applications. And now, with support for stored procedures, functions,

and triggers in MySQL 5.0, MySQL offers the programming power needed

for true enterprise use.

MySQL's new procedural language has a straightforward syntax, making it

easy to write simple programs. But it's not so easy to write secure,

easily maintained, high-performance, and bug-free programs. Few in the

MySQL world have substantial experience yet with stored procedures, but

Guy Harrison and Steven Feuerstein have decades of combined expertise.

In "MySQL Stored Procedure Programming," they put

that hard-won experience to good use. Packed with code examples and covering

everything from language basics to application building to advanced

tuning and best practices, this highly readable book is the one-stop

guide to MySQL development. It consists of four majorsections:

MySQL stored programming fundamentals -- tutorial, basic

statements, SQL in stored programs, and error handling

Building MySQL stored programs -- transaction handling,

built-in functions, stored functions, and triggers

MySQL stored programs in applications -- using stored

programs with PHP, Java, Perl, Python, and .NET (C# and VB.NET)

Optimizing MySQL stored programs -- security, basic and

advanced SQL tuning, optimizing stored program code, and programming

best practices

A companion web site contains many thousands of lines of code, that you

can put to use immediately.

Guy Harrison is Chief Architect of Database Solutions at Quest Software

and a frequent speaker and writer on MySQL topics. Steven Feuerstein is

the author of "Oracle PL/SQL Programming," the classic reference for Oracle stored programming for more than ten years. Both have decades of experience as database developers, and between them they have authored a dozen books.

Oracle PL/SQL for DBAs (Paperback): Steven Feuerstein Oracle PL/SQL for DBAs (Paperback)
Steven Feuerstein
R1,091 R831 Discovery Miles 8 310 Save R260 (24%) Ships in 12 - 19 working days

PL/SQL, Oracle's powerful procedural language, has been the cornerstone of Oracle application development for nearly 15 years. Although primarily a tool for developers, PL/SQL has also become an essential tool for database administration, as DBAs take increasing responsibility for site performance and as the lines between developers and DBAs blur.

Until now, there has not been a book focused squarely on the language topics of special concern to DBAs "Oracle PL/SQL for DBAs" fills the gap. Covering the latest Oracle version, Oracle Database 10g Release 2 and packed with code and usage examples, it contains: A quick tour of the PL/SQL language, providing enough basic information about language fundamentals to get DBAs up and running Extensive coverage of security topics for DBAs: Encryption (including both traditional methods and Oracle's new Transparent Data Encryption, TDE); Row-Level Security (RLS), Fine-Grained Auditing (FGA); and random value generation Methods for DBAs to improve query and database performance with cursors and table functions Coverage of Oracle scheduling, which allows jobs such as database monitoring and statistics gathering to be scheduled for regular execution

Using Oracle's built-in packages (DBMS_CRYPTO, DBMS_RLS, DBMS_FGA, DBMS_RANDOM, DBMS_SCHEDULING) as a base, the book describes ways of building on top of these packages to suit particular organizational needs. Authors are Arup Nanda, "Oracle Magazine 2003" DBA of the Year, and Steven Feuerstein, the world's foremost PL/SQL expert and coauthor of the classic reference, "Oracle PL/SQL Programming."

DBAs who have not yet discovered how helpful PL/SQL can be will find this book a superb introduction to the language and its special database administration features. Even if you have used PL/SQL for years, you'll find the detailed coverage in this book to be an invaluable resource.

Oracle PL/ SQL Developer's Workbook (Paperback, 1st ed.): Steven Feuerstein, Andrew Odewahn Oracle PL/ SQL Developer's Workbook (Paperback, 1st ed.)
Steven Feuerstein, Andrew Odewahn
R1,567 R1,002 Discovery Miles 10 020 Save R565 (36%) Ships in 12 - 19 working days

A companion to Feuerstein's other bestselling Oracle PL/SQL books, this workbook presents a carefully constructed set of problems and solutions that will test your language skills and help you become a better developer. Three levels of exercises--beginner, intermediate, and expert--cover the full set of language features. These include variables, loops, exception handling, data structures, object technology, cursors, built-in functions and packages, PL/SQL tuning, and the new Oracle8i features (including Java and the Web).

Oracle PL/SQL Best Practices 2e (Paperback, 2nd Revised edition): Steven Feuerstein Oracle PL/SQL Best Practices 2e (Paperback, 2nd Revised edition)
Steven Feuerstein
R722 R576 Discovery Miles 5 760 Save R146 (20%) Ships in 12 - 19 working days

In this compact book, Steven Feuerstein, widely recognized as one of the world's leading experts on the Oracle PL/SQL language, distills his many years of programming, teaching, and writing about PL/SQL into a set of best practices-recommendations for developing successful applications. Covering the latest Oracle release, Oracle Database 11gR2, Feuerstein has rewritten this new edition in the style of his bestselling Oracle PL/SQL Programming. The text is organized in a problem/solution format, and chronicles the programming exploits of developers at a mythical company called My Flimsy Excuse, Inc., as they write code, make mistakes, and learn from those mistakes-and each other. This book offers practical answers to some of the hardest questions faced by PL/SQL developers, including: * What is the best way to write the SQL logic in my application code? * How should I write my packages so they can be leveraged by my entire team of developers? * How can I make sure that all my team's programs handle and record errors consistently? Oracle PL/SQL Best Practices summarizes PL/SQL best practices in nine major categories: overall PL/SQL application development; programming standards; program testing, tracing, and debugging; variables and data structures; control logic; error handling; the use of SQL in PL/SQL; building procedures, functions, packages, and triggers; and overall program performance. This book is a concise and entertaining guide that PL/SQL developers will turn to again and again as they seek out ways to write higher quality code and more successful applications. "This book presents ideas that make the difference between a successful project and one that never gets off the ground. It goes beyond just listing a set of rules, and provides realistic scenarios that help the reader understand where the rules come from. This book should be required reading for any team of Oracle database professionals." --Dwayne King, President, KRIDAN Consulting

Vivian Vulture and the Cleanup Culture - A young vulture makes new friends and influences species! (Paperback): Veva Silva,... Vivian Vulture and the Cleanup Culture - A young vulture makes new friends and influences species! (Paperback)
Veva Silva, Roberto Melegari; Steven Feuerstein
R268 Discovery Miles 2 680 Ships in 10 - 15 working days

Vivian, a young vulture, leaves the nest to join her family in the Cleanup Culture. As she wanders the world, she meets other animal kids and is surprised to find out how she - and all vultures - seem to be misunderstood.

Eli and the Runaway Diaper (Paperback): Robert Melegari Eli and the Runaway Diaper (Paperback)
Robert Melegari; Steven Feuerstein
R351 Discovery Miles 3 510 Ships in 10 - 15 working days
Free Delivery
Pinterest Twitter Facebook Google+
You may like...
Boudicca
P.C. Cast Paperback R380 R339 Discovery Miles 3 390
Bullsh!t - 50 Fibs That Made South…
Jonathan Ancer Paperback  (2)
R280 R250 Discovery Miles 2 500
Stellenbosch: Murder Town - Two Decades…
Julian Jansen Paperback R360 R337 Discovery Miles 3 370
The Assassin's Blade - The Throne of…
Sarah J. Maas Hardcover R595 R522 Discovery Miles 5 220
Hydrodynamic and Magnetohydrodynamic…
A. Yoshizawa Hardcover R7,077 Discovery Miles 70 770
The Songbird & The Heart Of Stone - The…
Carissa Broadbent Paperback R385 R349 Discovery Miles 3 490
Drag Reduction of Turbulent Flows by…
A. Gyr, H.-W. Bewersdorff Hardcover R4,491 Discovery Miles 44 910
Precarious Power - Compliance And…
Susan Booysen Paperback  (4)
R380 R351 Discovery Miles 3 510
Survivor Skills - Project Gliese 581g…
S.E. Smith Paperback R456 Discovery Miles 4 560
Conversations With A Gentle Soul
Ahmed Kathrada, Sahm Venter Paperback  (3)
R190 R173 Discovery Miles 1 730

 

Partners