• Complain

Jon Heller - Pro Oracle SQL Development: Best Practices for Writing Advanced Queries

Here you can read online Jon Heller - Pro Oracle SQL Development: Best Practices for Writing Advanced Queries full text of the book (entire story) in english for free. Download pdf and epub, get meaning, cover and reviews about this ebook. year: 2019, publisher: Apress, genre: Home and family. Description of the work, (preface) as well as reviews are available. Best literature library LitArk.com created for fans of good reading and offers a wide selection of genres:

Romance novel Science fiction Adventure Detective Science History Home and family Prose Art Politics Computer Non-fiction Religion Business Children Humor

Choose a favorite category and find really read worthwhile books. Enjoy immersion in the world of imagination, feel the emotions of the characters or learn something new for yourself, make an fascinating discovery.

Jon Heller Pro Oracle SQL Development: Best Practices for Writing Advanced Queries
  • Book:
    Pro Oracle SQL Development: Best Practices for Writing Advanced Queries
  • Author:
  • Publisher:
    Apress
  • Genre:
  • Year:
    2019
  • Rating:
    4 / 5
  • Favourites:
    Add to favourites
  • Your mark:
    • 80
    • 1
    • 2
    • 3
    • 4
    • 5

Pro Oracle SQL Development: Best Practices for Writing Advanced Queries: summary, description and annotation

We offer to read an annotation, description, summary or preface (depends on what the author of the book "Pro Oracle SQL Development: Best Practices for Writing Advanced Queries" wrote himself). If you haven't found the necessary information about the book — write in the comments, we will try to find it.

Write SQL statements that are more powerful, simpler, and faster using Oracle SQL and its full range of features. This book provides a clearer way of thinking about SQL by building sets, and provides practical advice for using complex features while avoiding anti-patterns that lead to poor performance and wrong results. Relevant theories, real-world best practices, and style guidelines help you get the most out of Oracle SQL. Pro Oracle SQL Development is for anyone who already knows Oracle SQL and is ready to take their skills to the next level. Many developers, analysts, testers, and administrators use Oracle databases frequently, but their queries are limited because they do not have the knowledge, experience, or right environment to help them take full advantage of Oracles advanced features. This book will inspire you to achieve more with your Oracle SQL statements through tips for creating your own style for writing simple, yet powerful, SQL. It teaches you how to think about and solve performance problems in Oracle SQL, and covers advanced topics and shows you how to become an Oracle expert. What Youll Learn Understand the power of Oracle SQL and where to apply it Create a database development environment that is simple, scalable, and conducive to learning Solve complex problems that were previously solved in a procedural language Write large Oracle SQL statements that are powerful, simple, and fast Apply coding styles to make your SQL statements more readable Tune large Oracle SQL statements to eliminate and avoid performance problems Who This Book Is For Developers, testers, analysts, and administrators who want to harness the full power of Oracle SQL to solve their problems as simply and as quickly as possible. For traditional database professionals the book offers new ways of thinking about the language they have used for so long. For modern full stack developers the book explains how a database can be much more than simply a place to store data.

Jon Heller: author's other books


Who wrote Pro Oracle SQL Development: Best Practices for Writing Advanced Queries? Find out the surname, the name of the author of the book and a list of all author's works by series.

Pro Oracle SQL Development: Best Practices for Writing Advanced Queries — read online for free the complete book (whole text) full work

Below is the text of the book, divided by pages. System saving the place of the last page read, allows you to conveniently read the book "Pro Oracle SQL Development: Best Practices for Writing Advanced Queries" online for free, without having to search again every time where you left off. Put a bookmark, and you can go to the page where you finished reading at any time.

Light

Font size:

Reset

Interval:

Bookmark:

Make
Contents
Landmarks
Jon Heller Pro Oracle SQL Development Best Practices for Writing Advanced - photo 1
Jon Heller
Pro Oracle SQL Development Best Practices for Writing Advanced Queries
Jon Heller Clive IA USA Any source code or other supplementary material - photo 2
Jon Heller
Clive, IA, USA

Any source code or other supplementary material referenced by the author in this book is available to readers on GitHub via the books product page, located at www.apress.com/9781484245163 . For more detailed information, please visit http://www.apress.com/source-code .

ISBN 978-1-4842-4516-3 e-ISBN 978-1-4842-4517-0
https://doi.org/10.1007/978-1-4842-4517-0
Jon Heller 2019
This work is subject to copyright. All rights are reserved by the Publisher, whether the whole or part of the material is concerned, specifically the rights of translation, reprinting, reuse of illustrations, recitation, broadcasting, reproduction on microfilms or in any other physical way, and transmission or information storage and retrieval, electronic adaptation, computer software, or by similar or dissimilar methodology now known or hereafter developed.
Trademarked names, logos, and images may appear in this book. Rather than use a trademark symbol with every occurrence of a trademarked name, logo, or image we use the names, logos, and images only in an editorial fashion and to the benefit of the trademark owner, with no intention of infringement of the trademark. The use in this publication of trade names, trademarks, service marks, and similar terms, even if they are not identified as such, is not to be taken as an expression of opinion as to whether or not they are subject to proprietary rights.
While the advice and information in this book are believed to be true and accurate at the date of publication, neither the authors nor the editors nor the publisher can accept any legal responsibility for any errors or omissions that may be made. The publisher makes no warranty, express or implied, with respect to the material contained herein.
Distributed to the book trade worldwide by Springer Science+Business Media New York, 233 Spring Street, 6th Floor, New York, NY 10013. Phone 1-800-SPRINGER, fax (201) 348-4505, e-mail orders-ny@springer-sbm.com, or visit www.springeronline.com. Apress Media, LLC is a California LLC and the sole member (owner) is Springer Science + Business Media Finance Inc (SSBM Finance Inc). SSBM Finance Inc is a Delaware corporation.

I dedicate this book to my wonderful wife, Lisa, and to my awesome children, Elliott and Oliver.

Introduction

This book will set you on the path to becoming an Oracle SQL expert. It will inspire you to achieve more with your database queries.

This book is not a copy of the SQL Language Reference , will not quiz you about syntax trivia, and will not prepare you for an exam. But it will challenge the way you think about writing Oracle SQL. And I hope you have fun reading it.

Why Learn More About Oracle SQL?

Any database can store data, but Oracle is designed to help us process data. Many applications treat the database as a glorified text file, and there are many opportunities to use the database engine to improve our programs.

Oracle SQL is a great programming language and has many advantages compared to other languages and SQL implementations.
  1. Declarative: Declarative languages let us tell the computer what we want, without having to specify how to do it. Declarative languages are different than traditional imperative languages and can be difficult at first. (Whenever we find ourselves wanting to use a loop in SQL, thats a clue were thinking in the wrong programming paradigm.) Declarative languages let the compiler handle the details, leading to simpler and faster code. But if we need to control exactly how our code runs, we still have imperative options, such as PL/SQL, hints, and the MODEL clause.

  2. Popular: Oracle is one of the most popular databases in the world. And SQL is one of the most popular programming languages in the world.

  3. Portable: SQL and PL/SQL are entirely platform independent. Other than a rare bug, we never need to worry about which operating system is running our SQL.

  4. Clear and concise: The basic syntax is simple and readable, and the relational model is built on a few simple ideas. (If this description doesnt match your reality, Part III will explain how to make your code look better.)

  5. Interpreted: Statements run immediately, without a separate compilation step. Integrated development environments can take advantage of interpreted languages and let us instantly run programs, debug our code, and get results.

  6. Powerful: Oracle SQL has enough features to solve almost any problem. For those rare exceptions, PL/SQL can handle them and integrate perfectly with SQL.

  7. Fast: Oracle SQL is powerful enough to let us bring algorithms to our data, instead of bringing data to our algorithms. Ignore those shallow benchmarks that compare running SELECT COUNT(*) FROM EMPLOYEE a thousand times. Real-world performance is more complicated than that and depends more on an optimizer than the speed of running trivial commands.

Despite all those advantages, Oracle SQL is scandalously under-used. There are huge opportunities to improve our systems by using SQL more often.

Target Audience

This book is for anyone who already knows Oracle SQL and is ready to take their skills to the next level. For those of you who are already skilled at Oracle SQL, this book will give you a different way to think about the language.

There are many groups of people who frequently use Oracle databases. Their reasons for using the database may differ, but they can all benefit from improving their SQL knowledge.
  1. Database developers: If youre already frequently using an Oracle database, then you have the most to gain from this book. This book will help you with many phases of your software development life cycle. Even if you already know many of the advanced features, you will still benefit from the discussions about setting up the environment, SQL programming styles, and SQL performance tuning.

  2. Application/front end/full stack developers: Many applications only use simple queries like SELECT * FROM EMPLOYEES or have a framework that automatically takes care of database access. This book wont try to convince you to put all your business logic inside the database. But it will help you find great opportunities to simplify your code and improve performance, by using new SQL programming styles and advanced features.

  3. Data analysts and testers: Oracle SQL is the perfect language for analyzing, testing, and comparing data. Much of the advice in this book will help with those tasks.

  4. Data scientists: You probably wont use Oracle SQL for data mining (although Oracle does have a data mining option). But if youre reading or writing to an Oracle database, Oracles advanced features can at least help you with much of the tedious processing and formatting.

  5. Database administrators: SQL is the life blood of an Oracle database. If you administer Oracle, youll need to work with those SQL statements and help others improve them. And there are many times when an advanced SQL statement can help you perform administrative tasks better.

Next page
Light

Font size:

Reset

Interval:

Bookmark:

Make

Similar books «Pro Oracle SQL Development: Best Practices for Writing Advanced Queries»

Look at similar books to Pro Oracle SQL Development: Best Practices for Writing Advanced Queries. We have selected literature similar in name and meaning in the hope of providing readers with more options to find new, interesting, not yet read works.


Reviews about «Pro Oracle SQL Development: Best Practices for Writing Advanced Queries»

Discussion, reviews of the book Pro Oracle SQL Development: Best Practices for Writing Advanced Queries and just readers' own opinions. Leave your comments, write what you think about the work, its meaning or the main characters. Specify what exactly you liked and what you didn't like, and why you think so.