Remove postgresql
article thumbnail

Best Practices for Picking PostgreSQL Data Types

DZone

Choosing the right data types in PostgreSQL can significantly impact your database's performance and efficiency. In this article, we'll explore best practices for selecting data types that align with PostgreSQL's recommendations.

article thumbnail

PostgreSQL® Hostname Configuration

Scalegrid

Imagine a world where your PostgreSQL® database connections are seamless and secure. In this blog post, we’ll guide you through understanding the PostgreSQL hostname, setting it up correctly, and utilizing it effectively in SQL queries. Key Takeaways Understanding PostgreSQL hostname is essential for successful database connections.

Database 130
Insiders

Sign Up for our Newsletter

This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Trending Sources

article thumbnail

JSON_TABLE() Will Be in PostgreSQL 17

Percona

JSON_TABLE() will be in PostgreSQL 17! We will get it shortly when PostgreSQL 17 is officially released this year! It almost made it two years ago but was yanked away at the last minute. Please see this.Why is this important?JSON JSON has become the data interchange format of choice for most developers. JSON had a litany […]

article thumbnail

PostgreSQL Database Security Best Practices

Percona

When data is everything, the sophistication of cybersecurity threats casts a shadow over the world of data security, including for those using PostgreSQL as their database of choice.

article thumbnail

Dynatrace announces support of Google Cloud’s AlloyDB for PostgreSQL metrics ingest

Dynatrace

Today, Dynatrace is announcing that it has successfully achieved Google Cloud Ready – AlloyDB designation in support of an extended integration to Google Cloud’s AlloyDB for PostgreSQL. AlloyDB is a fully managed, PostgreSQL-compatible database service for highly demanding enterprise database workloads.

Google 227
article thumbnail

Using JSONB in PostgreSQL: How to Effectively Store & Index JSON Data in PostgreSQL

Scalegrid

In this post, we are going to show you tips and techniques on how to effectively store and index JSON data in PostgreSQL. You can also check out our Working with JSON Data in PostgreSQL vs. MongoDB webinar in partnership with PostgresConf to learn more on the topic, and check out our SlideShare page to download the slides.

Storage 321
article thumbnail

PostgreSQL EXPLAIN – What are the Query Costs?

Scalegrid

It returns the execution plan generated by PostgreSQL query planner for a given statement. Understanding the Postgres EXPLAIN cost EXPLAIN is very useful for understanding the performance of a Postgres query. The EXPLAIN command specifies whether the tables referenced in a statement will be searched using an index scan or a sequential scan.