Search icon CANCEL
Subscription
0
Cart icon
Your Cart (0 item)
Close icon
You have no products in your basket yet
Arrow left icon
Explore Products
Best Sellers
New Releases
Books
Videos
Audiobooks
Learning Hub
Conferences
Free Learning
Arrow right icon
Learning PostgreSQL 11
Learning PostgreSQL 11

Learning PostgreSQL 11: A beginner's guide to building high-performance PostgreSQL database solutions , Third Edition

Arrow left icon
Profile Icon Christopher Travers Profile Icon Volkov
Arrow right icon
€8.99 €26.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (6 Ratings)
eBook Jan 2019 556 pages 3rd Edition
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m
Arrow left icon
Profile Icon Christopher Travers Profile Icon Volkov
Arrow right icon
€8.99 €26.99
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7 (6 Ratings)
eBook Jan 2019 556 pages 3rd Edition
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m
eBook
€8.99 €26.99
Paperback
€32.99
Subscription
Free Trial
Renews at €18.99p/m

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Table of content icon View table of contents Preview book icon Preview Book

Learning PostgreSQL 11

PostgreSQL in Action

PostgreSQL (pronounced Post-Gres-Q-L), or postgres for short, is an open source object-relational-database management system. It emphasizes extensibility and creativity as well as compatibility. It competes with the major relational database vendors, such as Oracle, MySQL, and Microsoft SQL Server (MSSQL). It's used by different sectors, including government agencies and the public and private sectors. It's a cross-platform DBMS, and it runs on most modern operating systems, including Windows, macOS, and Linux flavors. It conforms to SQL and is ACID-compliant.

By the end of this chapter, the user should be able to install PostgreSQL, establish a connection to the server, and run very basic queries. Also, the user will know general information about PostgreSQL's history and capabilities. In this chapter, we will explore the following topics:

...

An overview of PostgreSQL

PostgreSQL (http://www.PostgreSQL.org/) has many useful features. It provides enterprise-level services, including performance, unique features, and scalability. It has a very supportive community and very good documentation.

PostgreSQL history

PostgreSQL was started as a project at the University of California at Berkeley (UCB), then it was developed by the community in 1996.

So far, PostgreSQL is actively developed by the PostgreSQL community as well as universities. The following time frames show the history of PostgreSQL's development:

  • 1977-1985, the Ingres project: Michael Stonebraker created a relational database management system (RDBMS) based on the formal relational model.
  • 1986-1994...

PostgreSQL capabilities

PostgreSQL provides enterprise-level services that guarantee the continuation of the business. For example, PostgreSQL supports replication, which enables the developers to provide HA solutions. PostgreSQL can integrate data from different data sources; this makes it easy for developers to use it for ETL jobs. In addition, PostgreSQL security is treated as a first-class citizen. Security update patches are shipped in minor releases to make it easier for administrators to upgrade PostgreSQL.

Finally, the features of PostgreSQL are endless: PostgreSQL provides advanced SQL statements, very rich extensions, and interactive tools.

Replication

Replication allows data from one database server to be replicated...

Installing PostgreSQL

PostgreSQL can be installed on almost all modern operating systems. It can be installed on all recent Linux distributions, Windows 2000 SP4 and later, FreeBSD, OpenBSD, macOS, AIX, and Solaris. Also, PostgreSQL can work on various CPU architectures, including x86, x86_64, and IA64. You can check whether a platform (operating system and CPU architecture combination) is supported by exploring the PostgreSQL build farm at http://buildfarm.postgresql.org/. You can compile and install

In order to automate PostgreSQL installation and to reduce server administrative tasks, it's recommended you use PostgreSQL binaries, which come with the operating system packaging system. This approach normally has one drawback: binaries that aren't up to date. However, PostgreSQL's official website maintains the binaries for the most common platforms, including BSD...

Summary

PostgreSQL is an open source, object-oriented relational database system. It supports many advanced features and complies with the ANSI-SQL standard. It has won industry recognition and user appreciation. The PostgreSQL slogan, The world's most advanced open source database, reflects the sophistication of PostgreSQL's features. It's a result of many years of research and collaboration between academia and industry. Start-up companies often favor PostgreSQL due to licensing costs, and it can aid profitable business models. PostgreSQL is also favored by many developers because of its capabilities and advantages.

PostgreSQL can be used for OLTP and OLAP applications. It is ACID-compliant; thus, it can be used out of the box for OLTP applications. For OLAP applications, PostgreSQL supports the Windows functions, FDW, table inheritance, declarative table partitioning...

Questions

  1. What's the difference between logical and streaming replication?
  2. Why do PostgreSQL security updates often require minimal downtime?
  3. What's the name of the main process of the PostgreSQL server?
  4. When installing PostgreSQL on Linux, you don't need to provide a password; what's the reason for this?
  5. What is Greenplum?
  6. What's meant by a physical backup and what utilities does PostgreSQL provide to achieve this?
  7. A developer destroyed some data by mistake on a database cluster. Do you think the administrator can recover PostgreSQL to a specific point in time?
  8. We briefly mentioned the CLUSTER and REINDEX statements. Use the psql tool's client meta-command to get the syntax for the CLUSTER and INDEX statements.
  9. Why is the psql tool very handy in shell scripting?
Left arrow icon Right arrow icon

Key benefits

  • Monitor, secure, and fine-tune your PostgreSQL 11 database
  • Learn client-side and server-side programming using SQL and PL/pgSQL
  • Discover tips on implementing efficient database solutions

Description

PostgreSQL is one of the most popular open source database management systems in the world, and it supports advanced features included in SQL standards. This book will familiarize you with the latest features in PostgreSQL 11, and get you up and running with building efficient PostgreSQL database solutions from scratch. Learning PostgreSQL, 11 begins by covering the concepts of relational databases and their core principles. You’ll explore the Data Definition Language (DDL) and commonly used DDL commands supported by ANSI SQL. You’ll also learn how to create tables, define integrity constraints, build indexes, and set up views and other schema objects. As you advance, you’ll come to understand Data Manipulation Language (DML) and server-side programming capabilities using PL/pgSQL, giving you a robust background to develop, tune, test, and troubleshoot your database application. The book will guide you in exploring NoSQL capabilities and connecting to your database to manipulate data objects. You’ll get to grips with using data warehousing in analytical solutions and reports, and scaling the database for high availability and performance. By the end of this book, you’ll have gained a thorough understanding of PostgreSQL 11 and developed the necessary skills to build efficient database solutions.

Who is this book for?

This book is for you if you're interested in learning about PostgreSQL from scratch. Those looking to build solid database or data warehousing applications or wanting to get up to speed with the latest features of PostgreSQL 11 will also find this book useful. No prior knowledge of database programming or administration is required to get started.

What you will learn

  • Understand the basics of relational databases, relational algebra, and data modeling
  • Install a PostgreSQL server, create a database, and implement your data model
  • Create tables and views, define indexes and stored procedures, and implement triggers
  • Make use of advanced data types such as Arrays, hstore, and JSONB
  • Connect your Python applications to PostgreSQL and work with data efficiently
  • Identify bottlenecks to enhance reliability and performance of database applications

Product Details

Country selected
Publication date, Length, Edition, Language, ISBN-13
Publication date : Jan 31, 2019
Length: 556 pages
Edition : 3rd
Language : English
ISBN-13 : 9781789535211
Category :
Languages :
Tools :

What do you get with eBook?

Product feature icon Instant access to your Digital eBook purchase
Product feature icon Download this book in EPUB and PDF formats
Product feature icon Access this title in our online reader with advanced features
Product feature icon DRM FREE - Read whenever, wherever and however you want
Product feature icon AI Assistant (beta) to help accelerate your learning
OR
Modal Close icon
Payment Processing...
tick Completed

Billing Address

Product Details

Publication date : Jan 31, 2019
Length: 556 pages
Edition : 3rd
Language : English
ISBN-13 : 9781789535211
Category :
Languages :
Tools :

Packt Subscriptions

See our plans and pricing
Modal Close icon
€18.99 billed monthly
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Simple pricing, no contract
€189.99 billed annually
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts
€264.99 billed in 18 months
Feature tick icon Unlimited access to Packt's library of 7,000+ practical books and videos
Feature tick icon Constantly refreshed with 50+ new titles a month
Feature tick icon Exclusive Early access to books as they're written
Feature tick icon Solve problems while you work with advanced search and reference features
Feature tick icon Offline reading on the mobile app
Feature tick icon Choose a DRM-free eBook or Video every month to keep
Feature tick icon PLUS own as many other DRM-free eBooks or Videos as you like for just €5 each
Feature tick icon Exclusive print discounts

Frequently bought together


Stars icon
Total 98.97
Mastering PostgreSQL 11
€32.99
PostgreSQL 11 Server Side Programming Quick Start Guide
€32.99
Learning PostgreSQL 11
€32.99
Total 98.97 Stars icon
Banner background image

Table of Contents

18 Chapters
Relational Databases Chevron down icon Chevron up icon
PostgreSQL in Action Chevron down icon Chevron up icon
PostgreSQL Basic Building Blocks Chevron down icon Chevron up icon
PostgreSQL Advanced Building Blocks Chevron down icon Chevron up icon
SQL Language Chevron down icon Chevron up icon
Advanced Query Writing Chevron down icon Chevron up icon
Server-Side Programming with PL/pgSQL Chevron down icon Chevron up icon
OLAP and Data Warehousing Chevron down icon Chevron up icon
Beyond Conventional Data Types Chevron down icon Chevron up icon
Transactions and Concurrency Control Chevron down icon Chevron up icon
PostgreSQL Security Chevron down icon Chevron up icon
The PostgreSQL Catalog Chevron down icon Chevron up icon
Optimizing Database Performance Chevron down icon Chevron up icon
Testing Chevron down icon Chevron up icon
Using PostgreSQL in Python Applications Chevron down icon Chevron up icon
Scalability Chevron down icon Chevron up icon
What's Next? Chevron down icon Chevron up icon
Other Books You May Enjoy Chevron down icon Chevron up icon

Customer reviews

Top Reviews
Rating distribution
Full star icon Full star icon Half star icon Empty star icon Empty star icon 2.7
(6 Ratings)
5 star 16.7%
4 star 16.7%
3 star 0%
2 star 50%
1 star 16.7%
Filter icon Filter
Top Reviews

Filter reviews by




RENATO ESTEVAM LANGE DE TOLEDO E SILVA Jun 17, 2019
Full star icon Full star icon Full star icon Full star icon Full star icon 5
no complains.
Amazon Verified review Amazon
adrenalin Mar 23, 2019
Full star icon Full star icon Full star icon Full star icon Empty star icon 4
This book goes through a multitude of aspects, in which it is a good reference to the different sides of Postgres, but at the same time its Achilles’ heel: no time to explain everything in detail for the beginners.So if you already have some background with databases this covers quickly enough everything needed, but if you don’t it will leave the homework for you to study more, and some concepts might still be difficult to grasp.Esch chapter ends with a questionnaire. If you can answer the questions you can hop on to the chapter less familiar.
Amazon Verified review Amazon
Glen W. May 10, 2019
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
The author(s) clearly know PosgreSQL at expert level. Unfortunately, much information is presented outside of a framework for comprehension and retention. For example, if someone walks up to you on the street and starts giving you directions your brain is stuck on "why am I getting directions". If you are given the address you know where the directions go, but your brain is stuck on "why would I go to that address". If you are told free beer/cupcakes/books/money/etc are being given away for the next 15 minutes, well then you care and are able to absorb the instructions.Before the book even gets into how to make a table it's telling you about commandline options to ignore configurations in the ~/.psqlrc file...WHO CARES?!!! (page 68) This is just one example of many where the book presents technical information without laying the groundwork for why the information is worth remembering/understanding/using.I'm not new to databases, system admin, or coding. But, I am new to Linux and PostgreSQL. I've spent 30 years in the Microsoft tech stack and am now branching out. This book is quite hard to learn from (so far) because information is presented out of sequence from when the reader can grasp its usefulness. This is somewhat true of chapter one, and very true of chapter 2. I will update this post as I make my way through the book.
Amazon Verified review Amazon
undrpaidtekmnky Nov 08, 2019
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
While this book is very thorough, it is not for beginners. Key concepts are simply mentioned, and then forgotten without any sort of explanation or in depth study. Thr author's writing style and organisation are extremely chaotic, and do not create a positive experience for the reader. The information IS all in there, however, this book would benefit from a complete reorganisation and further in depth discussion of the concepts that a beginner will absolutely need to move forward.
Amazon Verified review Amazon
OldFashioned Feb 13, 2020
Full star icon Full star icon Empty star icon Empty star icon Empty star icon 2
As with other purchasers I was massively disappointed with this book. The authors are far too expert at postgres and totally untroubled by giving a structured learning experience that will lead a newbie into any kind of pleasing experience. Within a few pages the authors manage to really annoy by just dropping complicated scripts into the text, without explanation - and time and again. Sure, the information is there (much later) but it is disjointed and truly irritating. Sorry - but the editors and reviewers for the book before publishing deserve to be censured for such a poorly laid out book.Recommended as a resource to flick through to fix issues when they arise. Not for a newbie. Not to learn postyres from.
Amazon Verified review Amazon
Get free access to Packt library with over 7500+ books and video courses for 7 days!
Start Free Trial

FAQs

How do I buy and download an eBook? Chevron down icon Chevron up icon

Where there is an eBook version of a title available, you can buy it from the book details for that title. Add either the standalone eBook or the eBook and print book bundle to your shopping cart. Your eBook will show in your cart as a product on its own. After completing checkout and payment in the normal way, you will receive your receipt on the screen containing a link to a personalised PDF download file. This link will remain active for 30 days. You can download backup copies of the file by logging in to your account at any time.

If you already have Adobe reader installed, then clicking on the link will download and open the PDF file directly. If you don't, then save the PDF file on your machine and download the Reader to view it.

Please Note: Packt eBooks are non-returnable and non-refundable.

Packt eBook and Licensing When you buy an eBook from Packt Publishing, completing your purchase means you accept the terms of our licence agreement. Please read the full text of the agreement. In it we have tried to balance the need for the ebook to be usable for you the reader with our needs to protect the rights of us as Publishers and of our authors. In summary, the agreement says:

  • You may make copies of your eBook for your own use onto any machine
  • You may not pass copies of the eBook on to anyone else
How can I make a purchase on your website? Chevron down icon Chevron up icon

If you want to purchase a video course, eBook or Bundle (Print+eBook) please follow below steps:

  1. Register on our website using your email address and the password.
  2. Search for the title by name or ISBN using the search option.
  3. Select the title you want to purchase.
  4. Choose the format you wish to purchase the title in; if you order the Print Book, you get a free eBook copy of the same title. 
  5. Proceed with the checkout process (payment to be made using Credit Card, Debit Cart, or PayPal)
Where can I access support around an eBook? Chevron down icon Chevron up icon
  • If you experience a problem with using or installing Adobe Reader, the contact Adobe directly.
  • To view the errata for the book, see www.packtpub.com/support and view the pages for the title you have.
  • To view your account details or to download a new copy of the book go to www.packtpub.com/account
  • To contact us directly if a problem is not resolved, use www.packtpub.com/contact-us
What eBook formats do Packt support? Chevron down icon Chevron up icon

Our eBooks are currently available in a variety of formats such as PDF and ePubs. In the future, this may well change with trends and development in technology, but please note that our PDFs are not Adobe eBook Reader format, which has greater restrictions on security.

You will need to use Adobe Reader v9 or later in order to read Packt's PDF eBooks.

What are the benefits of eBooks? Chevron down icon Chevron up icon
  • You can get the information you need immediately
  • You can easily take them with you on a laptop
  • You can download them an unlimited number of times
  • You can print them out
  • They are copy-paste enabled
  • They are searchable
  • There is no password protection
  • They are lower price than print
  • They save resources and space
What is an eBook? Chevron down icon Chevron up icon

Packt eBooks are a complete electronic version of the print edition, available in PDF and ePub formats. Every piece of content down to the page numbering is the same. Because we save the costs of printing and shipping the book to you, we are able to offer eBooks at a lower cost than print editions.

When you have purchased an eBook, simply login to your account and click on the link in Your Download Area. We recommend you saving the file to your hard drive before opening it.

For optimal viewing of our eBooks, we recommend you download and install the free Adobe Reader version 9.