• Skip to main content
  • Skip to secondary menu
  • Skip to primary sidebar
  • Home
  • About Us
  • Contact Us

iHash

News and How to's

  • Prodigy Afterschool Masterclasses for Kids for $99

    Prodigy Afterschool Masterclasses for Kids for $99
  • 10.1" WiFi Digital Photo Frame with Photo/Video Sharing for $149

    10.1" WiFi Digital Photo Frame with Photo/Video Sharing for $149
  • 8" WiFi Cloud Photo Frame for $112

    8" WiFi Cloud Photo Frame for $112
  • 8" WiFi Digital Photo Frame with Auto Rotation & Photo/Video Sharing for $112

    8" WiFi Digital Photo Frame with Auto Rotation & Photo/Video Sharing for $112
  • Wireless Wall Tap Smart Plug for $39

    Wireless Wall Tap Smart Plug for $39
  • News
    • Rumor
    • Design
    • Concept
    • WWDC
    • Security
    • BigData
  • Apps
    • Free Apps
    • OS X
    • iOS
    • iTunes
      • Music
      • Movie
      • Books
  • How to
    • OS X
      • OS X Mavericks
      • OS X Yosemite
      • Where Download OS X 10.9 Mavericks
    • iOS
      • iOS 7
      • iOS 8
      • iPhone Firmware
      • iPad Firmware
      • iPod touch
      • AppleTV Firmware
      • Where Download iOS 7 Beta
      • Jailbreak News
      • iOS 8 Beta/GM Download Links (mega links) and How to Upgrade
      • iPhone Recovery Mode
      • iPhone DFU Mode
      • How to Upgrade iOS 6 to iOS 7
      • How To Downgrade From iOS 7 Beta to iOS 6
    • Other
      • Disable Apple Remote Control
      • Pair Apple Remote Control
      • Unpair Apple Remote Control
  • Special Offers
  • Contact us

The Right Way to Get Started with PostgreSQL

Apr 10, 2022 by iHash Leave a Comment

PostgreSQL, a free, feature-rich and extensible open-source database system with a broad developer community, has become one of the most widely used databases in the world, offering enterprise-grade features appropriate for high-load, business-critical systems.

As with all database systems, anyone just starting to learn about PostgreSQL can benefit from a clear, incremental approach to developing a strong skillset. This article outlines such an approach, which is also developed in far more detail – including step- by-step instructions and code samples – in “Postgres. The First Experience,” a free, downloadable book by Pavel Luzanov, Egor Rogov, and Igor Levshin.

1. Getting Started – Installation on Linux and Windows

Depending on your operating system, PostgreSQL installations differ, so it’s important to access specific instructions for your environment. For ease of deployment, you can use the Postgres Pro Standard 12 or 13 distribution, which is fully compatible with vanilla PostgreSQL and available from the Microsoft Azure Marketplace.

Once you’ve downloaded PostgreSQL, you can run the installation wizard, following the advice in the downloaded instructions as you go.

2. Connecting to a server

In Postgres, connecting to a server requires using the psql client from the command line in the interactive mode. While many developers no longer like the idea of a command line interface, using it for Postgres makes sense because it is available in every version of Postgres, and it is very convenient for everyday DBA tasks, such as writing small queries and automating processes.

If you prefer a graphical user interface (GUI), you can try pgAdmin or another downloadable solution. pgAdmin can make it easier to run some DBA tasks, including reviewing database objects and running SQL queries, and the latest version includes the standard PostgreSQL utilities, system catalog information, administration functions, and SQL commands. It also has a built-in PL/pgSQL debugger that is useful to learn about.

3. Practicing on a demo SQL database

A demo SQL database is the best way to learn the fundamentals of using Postgres. To go to the next level and learn about how to create complex queries, create a demo database with at least eight tables and fill it with usable data. You can also download a free, pre-filled demo database.

4. Using PostgreSQL with your application

Once you’ve got the basics of Postgres down, you can create the database for your application. However, don’t use the “database user” created during the installation process for the application because this user has superuser privileges. Instead, create a new user and make it the owner of a separate database, so that its rights are limited to this database instance only.

You can then follow the general instructions for connecting to a new database on behalf of the new user. Once this connection is made, you’re ready to develop an application, keeping in mind the basics of the client server relationship. Whether to locate the business logic of the application on the server side, the client side, or a bit of both will depend on your knowledge and future needs.

5. Minimal server setup

While the default settings of PostgreSQL will work on nearly any hardware configuration, you’ll get better performance if the database configuration is based on the physical characteristics of the server and the typical application workload. To ensure optimal performance for production databases, most database administrators take a deeper dive into PostgreSQL database administration, including taking online or in-person courses.

6. Postgres includes a number of advanced features that can improve the capabilities of your applications:

  • Full-text search – This feature enables you to search text-based data in a big data database using a relevance algorithm – similar to how Google Search works.
  • JSON and JSONB – The simplicity of NoSQL databases – the absence of a fixed row- and column-oriented structure – delivers tremendous speed, but these databases are insufficient for sophisticated database work. JSON and JSONB bring some of the speed benefits of NoSQL to SQL without breaking the traditional SQL database structure.
  • Foreign data wrappers – To enable Postgres-based applications to share data with other applications, PostgreSQL supports the ISO/IEC 9075-9 standard (SQL/MED, Management of External Data), which defines how to work with external data sources via a mechanism called foreign data wrappers. Postgres includes two foreign data wrappers, one for external PostgreSQL databases and one for files on a server. Foreign data wrappers for Oracle, MySQL and SQL Server are also available as extensions.
  • The PostgreSQL 13 release also includes key new features including b-tree deduplication, incremental sorting, parallelized vacuum, and enhanced partitioning.
  • The most current release, PostgreSQL 14, includes enhancements for greater scalability, extensibility and usability and features several performance improvements for parallel queries, heavily-concurrent workloads, partitioned tables, logical replication, and vacuuming.

For a complete list of PostgreSQL features, review the PostgreSQL feature matrix.

Conclusion

The more you learn about PostgreSQL from the start, the more you can optimize your applications from the ground up – and the more valuable you will become to your organization. You can also track expert blogs and the availability of free webinars. Keep in mind that PostgreSQL version 14 is on the horizon and includes numerous enhancements, including some that may impact a possible migration.

About the Author

Igor Levshin is Director of Content of Postgres Professional, the company that makes PostgreSQL enterprise-ready. 

Sign up for the free insideBIGDATA newsletter.

Join us on Twitter: @InsideBigData1 – https://twitter.com/InsideBigData1

Source link

Share this:

  • Facebook
  • Twitter
  • Pinterest
  • LinkedIn

Filed Under: BigData

Special Offers

  • Prodigy Afterschool Masterclasses for Kids for $99

    Prodigy Afterschool Masterclasses for Kids for $99
  • 10.1" WiFi Digital Photo Frame with Photo/Video Sharing for $149

    10.1" WiFi Digital Photo Frame with Photo/Video Sharing for $149
  • 8" WiFi Cloud Photo Frame for $112

    8" WiFi Cloud Photo Frame for $112
  • 8" WiFi Digital Photo Frame with Auto Rotation & Photo/Video Sharing for $112

    8" WiFi Digital Photo Frame with Auto Rotation & Photo/Video Sharing for $112
  • Wireless Wall Tap Smart Plug for $39

    Wireless Wall Tap Smart Plug for $39

Reader Interactions

Leave a Reply Cancel reply

This site uses Akismet to reduce spam. Learn how your comment data is processed.

Primary Sidebar

E-mail Newsletter

  • Facebook
  • GitHub
  • Instagram
  • Pinterest
  • Twitter
  • YouTube

More to See

ZuoRAT Malware Hijacking Home-Office Routers to Spy on Targeted Networks

Jun 28, 2022 By iHash

Cisco Talos Supports Ukraine Through Empathy

Cisco Talos Supports Ukraine Through Empathy

Jun 28, 2022 By iHash

Tags

* Apple Cisco computer security cyber attacks cyber crime cyber news Cyber Security cybersecurity cyber security news cyber security news today cyber security updates cyber threats cyber updates data breach data breaches google hacker hacker news Hackers hacking hacking news how to hack incident response information security iOS iOS 7 iOS 8 iPhone iPhone 6 Malware microsoft network security Privacy ransomware malware risk management security security breaches security vulnerabilities software vulnerability the hacker news Threat update video web applications

Latest

How CIOs and CISOs can collaborate for success in the new cloud era

How CIOs and CISOs can collaborate for success in the new cloud era

The rapid adoption of multicloud IT environments and the transition to hybrid workforces demand a new dynamic in the C-suite: a closer alliance between CIOs and CISOs.  By joining forces, CIOs and CISOs can strike a healthy balance between pushing the pace of tech innovation and mitigating risk. Moving to the cloud — especially to […]

What Is Data Reliability Engineering?

Data Reliability Engineering (DRE) is the work done to keep data pipelines delivering fresh and high-quality input data to the users and applications that depend on them. The goal of DRE is to allow for iteration on data infrastructure, the logical data model, etc. as quickly as possible, while—and this is the key part! —still […]

Prodigy Afterschool Masterclasses for Kids for $99

Expires June 28, 2122 23:59 PST Buy now and get 85% off KEY FEATURES Unlock Your Child’s Potential For Success! No dream is too big when you have the tools to achieve it. Whether your child dreams of saving lives as a doctor or inspiring people through the arts, Prodigy will give them the tools […]

Charlie Klein

Key-Thoughts on Cross-Organizational Observability Strategy

Logz.io ran two surveys earlier this year to better understand current trends, challenges, and strategies for implementing more effective and efficient observability – including the DevOps Pulse Survey and a survey we ran with Forrester Research. Together, we received responses from 1300+ DevOps and IT Ops practitioners on observability challenges, opportunities, and ownership strategies. Additionally, […]

8" WiFi Cloud Photo Frame for $112

Expires June 25, 2122 23:59 PST Buy now and get 13% off KEY FEATURES With the 8″ WiFi Cloud Photo Frame you can send photos from your phone to your frame, control which photos are to be sent to your frame, and update your images instantly. You can send photos from any device with an […]

8" WiFi Digital Photo Frame with Auto Rotation & Photo/Video Sharing for $112

Expires June 25, 2122 23:59 PST Buy now and get 19% off KEY FEATURES Send Pictures and Videos from your smartphone to eco4life WiFi Digital Photo Frame, from anywhere in the world using the eco4life App. The eco4life smart frame is simply the best way to enjoy your favorite photos and videos with your families […]

Jailbreak

Pangu Releases Updated Jailbreak of iOS 9 Pangu9 v1.2.0

Pangu has updated its jailbreak utility for iOS 9.0 to 9.0.2 with a fix for the manage storage bug and the latest version of Cydia. Change log V1.2.0 (2015-10-27) 1. Bundle latest Cydia with new Patcyh which fixed failure to open url scheme in MobileSafari 2. Fixed the bug that “preferences -> Storage&iCloud Usage -> […]

Apple Blocks Pangu Jailbreak Exploits With Release of iOS 9.1

Apple has blocked exploits used by the Pangu Jailbreak with the release of iOS 9.1. Pangu was able to jailbreak iOS 9.0 to 9.0.2; however, in Apple’s document on the security content of iOS 9.1, PanguTeam is credited with discovering two vulnerabilities that have been patched.

Pangu Releases Updated Jailbreak of iOS 9 Pangu9 v1.1.0

  Pangu has released an update to its jailbreak utility for iOS 9 that improves its reliability and success rate.   Change log V1.1.0 (2015-10-21) 1. Improve the success rate and reliability of jailbreak program for 64bit devices 2. Optimize backup process and improve jailbreak speed, and fix an issue that leads to fail to […]

Activator 1.9.6 Released With Support for iOS 9, 3D Touch

  Ryan Petrich has released Activator 1.9.6, an update to the centralized gesture, button, and shortcut manager, that brings support for iOS 9 and 3D Touch.

Copyright iHash.eu © 2022
We use cookies on this website. By using this site, you agree that we may store and access cookies on your device. Accept Read More
Privacy & Cookies Policy

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. This category only includes cookies that ensures basic functionalities and security features of the website. These cookies do not store any personal information.
Non-necessary
Any cookies that may not be particularly necessary for the website to function and is used specifically to collect user personal data via analytics, ads, other embedded contents are termed as non-necessary cookies. It is mandatory to procure user consent prior to running these cookies on your website.
SAVE & ACCEPT