Skip to content

Commit f2f70fb

Browse files
committed
Fix broken links and minor issues in PPG (18)
This PR fixes some 404 links and empty spaces.
1 parent 45b3987 commit f2f70fb

File tree

8 files changed

+14
-16
lines changed

8 files changed

+14
-16
lines changed

docs/crud.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ CREATE TABLE customers (
2323
);
2424
```
2525

26-
<i info>:material-information: Hint:</i>Having issues with table creation? Check our [Troubleshooting guide](troubleshooting.md)
26+
<i info>:material-information: Hint:</i> Having issues with table creation? Check our [Troubleshooting guide](troubleshooting.md).
2727

2828
## Insert the data
2929

@@ -74,7 +74,7 @@ Let's update John Doe's record with a new email address.
7474
SELECT * FROM customers WHERE first_name = 'John' AND last_name = 'Doe';
7575
```
7676

77-
??? example "Expected output"
77+
??? example "Expected output"
7878

7979
```{.sql .no-copy}
8080
id | first_name | last_name | email

docs/get-help.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Our documentation guides are packed with information, but they can’t cover eve
66

77
Be a part of a space where you can tap into a wealth of knowledge from other database enthusiasts and experts who work with Percona’s software every day. While our service is entirely free, keep in mind that response times can vary depending on the complexity of the question. You are engaging with people who genuinely love solving database challenges.
88

9-
We recommend visiting our [Community Forum](https://forums.percona.com/t/welcome-to-perconas-community-forum/7){:target="_blank"}. It’s an excellent place for discussions, technical insights, and support around Percona database software. If you’re new and feeling a bit unsure, our [FAQ](https://forums.percona.com/faq){:target="_blank"} and [Guide for New Users](https://forums.percona.com/t/faq-guide-for-new-users/8562){:target="_blank"} ease you in.
9+
We recommend visiting our [Community Forum](https://forums.percona.com/){:target="_blank"}. It’s an excellent place for discussions, technical insights, and support around Percona database software. If you’re new and feeling a bit unsure, our [FAQ](https://forums.percona.com/faq){:target="_blank"} and [Guide for New Users](https://forums.percona.com/t/faq-guide-for-new-users/8562){:target="_blank"} ease you in.
1010

1111
If you have thoughts, feedback, or ideas, the community team would like to hear from you at [Any ideas on how to make the forum better?](https://forums.percona.com/t/any-ideas-on-how-to-make-the-forum-better/11522){:target="blank"}. We’re always excited to connect and improve everyone's experience.
1212

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Part of the solution, Percona Operator for PostgreSQL, makes it easy to orchestr
1414
- No guesswork on finding the right version of a component – they all undergo thorough testing to ensure compatibility
1515
- Freely available reference architectures for solutions like high-availability, backups and disaster recovery
1616
- Spatial data handling support via PostGIS
17-
- Monitoring of the database health, performance and infrastructure usage via open source [Percona Management and Monitoring :octicons-link-external-16:](https://www.percona.com/doc/percona-monitoring-and-management/2.x/index.html) with PostgreSQL-specific dashboards
17+
- Monitoring of the database health, performance and infrastructure usage via open source [Percona Management and Monitoring :octicons-link-external-16:](https://docs.percona.com/percona-monitoring-and-management/3/) with PostgreSQL-specific dashboards
1818
- Run PostgreSQL on Kubernetes using open source [Percona Operator for PostgreSQL :octicons-link-external-16:](https://docs.percona.com/percona-operator-for-postgresql/2.0/index.html). It not only automates deployment and management of PostgreSQL clusters on Kubernetes, but also includes enterprise-ready features for high-availability, backup and restore, replication, logging, and more
1919
- Automate PostgreSQL provisioning and management in Kubernetes, in the cloud or on-premises with [Percona Everest :octicons-link-external-16:](https://docs.percona.com/everest/index.html#why-percona-everest) - the cloud-native database platform
2020

docs/major-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Run **all** commands as root or via **sudo**:
5858
!!! note
5959
When installing version 18, if prompted via a pop-up to upgrade to the latest available version, select **No**.
6060

61-
* [Install percona-release :octicons-link-external-17:](https://docs.percona.com/percona-software-repositories/installing.html). If you have installed it before, [update it to the latest version](https://docs.percona.com/percona-software-repositories/updating.html)
61+
* [Install percona-release :octicons-link-external-16:](https://docs.percona.com/percona-software-repositories/installing.html). If you have installed it before, [update it to the latest version](https://docs.percona.com/percona-software-repositories/updating.html)
6262

6363
* Enable Percona repository
6464

docs/minor-upgrade.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Minor upgrade of Percona Distribution for PostgreSQL includes the following step
2323

2424
## Before you start
2525

26-
1. [Update the `percona-release` :octicons-link-external-16:](https://www.percona.com/doc/percona-repo-config/percona-release.html#updating-percona-release-to-the-latest-version) utility to the latest version. This is required to install the new version packages of Percona Distribution for PostgreSQL.
26+
1. [Update the `percona-release` :octicons-link-external-16:](https://docs.percona.com/percona-software-repositories/updating.html) utility to the latest version. This is required to install the new version packages of Percona Distribution for PostgreSQL.
2727

2828
2. Starting with version 17.2.1, `pg_tde` is part of the Percona Server for PostgreSQL package. If you installed `pg_tde` from its dedicated package, do the following to avoid conflicts during the upgrade:
2929

docs/troubleshooting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Every database in PostgreSQL has a default schema called `public`. A schema stor
1010

1111
When you create a table without specifying a schema name, it ends up in the `public` schema by default.
1212

13-
Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgvesrion}}/sql-grant.html) command or create your own schema to insert the data.
13+
Starting with PostgreSQL 15, non-database owners cannot access the `public` schema. Therefore, you can either grant privileges to the database for your user using the [GRANT](https://www.postgresql.org/docs/{{pgversion}}/sql-grant.html) command or create your own schema to insert the data.
1414

1515
To create a schema, use the following statement:
1616

docs/uninstalling.md

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
To uninstall Percona Distribution for PostgreSQL, remove all the installed packages and data / configuration files.
44

5-
**NOTE**: Should you need the data files later, back up your data before uninstalling Percona Distribution for PostgreSQL.
5+
!!! note
6+
Should you need the data files later, back up your data before uninstalling Percona Distribution for PostgreSQL.
67

78
=== ":material-debian: On Debian and Ubuntu using `apt`"
89

@@ -82,4 +83,4 @@ If you [installed Percona Distribution for PostgreSQL from binary tarballs](tarb
8283

8384
```{.bash data-prompt="$"}
8485
$ sudo rm -rf /path/to/tarballs/
85-
```
86+
```

docs/whats-next.md

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,19 @@ You've just had your first hands-on experience with PostgreSQL! That's a great s
44

55
To become more confident and proficient in developing database applications, let's expand your knowledge and skills in using PostgreSQL. Dive deeper into these key topics to solidify your PostgreSQL skills:
66

7-
- [SQL Syntax :octicons-link-external-16:](https://www.postgresql.org/docs/current/sql-syntax.html)
7+
- [SQL Syntax :octicons-link-external-16:](https://www.postgresql.org/docs/current/sql-syntax.html)
88
- [Data definition :octicons-link-external-16:](https://www.postgresql.org/docs/current/ddl.html)
99
- [Queries :octicons-link-external-16:](https://www.postgresql.org/docs/current/queries.html)
1010
- [Functions and Operators :octicons-link-external-16:](https://www.postgresql.org/docs/current/functions.html)
1111
- [Indexes :octicons-link-external-16:](https://www.postgresql.org/docs/current/indexes.html)
1212

13+
To effectively solve database administration tasks, master these essential topics:
1314

14-
To effectively solve database administration tasks, master these essential topics:
15-
16-
- [Backup and restore :octicons-link-external-16:](https://www.postgresql.org/docs/current/backup.html)
15+
- [Backup and restore :octicons-link-external-16:](https://www.postgresql.org/docs/current/backup.html)
1716
- [Authentication :octicons-link-external-16:](https://www.postgresql.org/docs/{{pgversion}}/auth-methods.html) and role-based access control
1817
- [PostgreSQL contrib extensions and modules](contrib.md)
19-
- [Monitor PostgreSQL with Percona Monitoring and Management :octicons-link-external-16:](https://docs.percona.com/percona-monitoring-and-management/quickstart/index.html)
20-
18+
- [Monitor PostgreSQL with Percona Monitoring and Management :octicons-link-external-16:](https://docs.percona.com/percona-monitoring-and-management/3/quickstart/quickstart.html)
2119

2220
Also, check out our solutions to help you meet the requirements of your organization.
2321

2422
[Solutions](solutions.md){.md-button}
25-

0 commit comments

Comments
 (0)