Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PEM - SQL Profiler package name correction #6444

Merged
merged 1 commit into from
Feb 3, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,15 +41,15 @@ Before you begin the installation process:

### Install the package

The syntax for the install command is:
The syntax to install SQL Profiler on EDB Postgres Advanced Server and EDB Postgres Extended is:

```shell
sudo <package-manager> -y install edb-<postgres><postgres_version>-server-sqlprofiler

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The package name of SQL Profiler on EDB Postgres Advanced Server is edb-as<postgres_version>-server-sqlprofiler, which is correct.
But, the package name of SQL Profiler on EDB Postgres Extended is edb-postgresextended<postgres_version>-sqlprofiler, there is no "server" in package name string.

```

Where:

- `<package-manager>`is the package manager used with your operating system:
- `<package-manager>` is the package manager used with your operating system:

| Package manager | Operating system |
| --------------- | -------------------------------- |
Expand All @@ -59,23 +59,33 @@ Where:

- `<postgres>` is the distribution of Postgres you're using:

| Postgres distribution | Value |
| ---------------------------- | ---------- |
| PostgreSQL | pg |
| EDB Postgres Advanced Server | as |
| Postgres distribution | Value |
|------------------------------|------------------|
| EDB Postgres Advanced Server | as |
| EDB Postgres Extended | postgresextended |

- `<postgres_version>` is the version of Postgres you're using.

For example, to install the latest version of SQL Profiler for EDB Postgres Advanced Server 15 on a RHEL 8 platform:
For example, to install the latest version of SQL Profiler for EDB Postgres Advanced Server 15 on a RHEL 8 platform:

```shell
sudo dnf -y install edb-as15-server-sqlprofiler
```

The syntax to install SQL Profiler on PostgreSQL is:

## Enabling the extension
```shell
# For RHEL 8 and its derivatives:
sudo dnf -y install sqlprofiler_<version>

# For Debian/Ubuntu:
apt-get -y install postgresql-<version>-sqlprofiler
```

Where `<version>` is the version of PostgreSQL you're using.


## Enabling the extension

To enable the extension:

Expand Down
Loading