Skip to content

Commit aa89bae

Browse files
Removed other pgagent mentions and streamlined 16 and 17 versions
1 parent abeaf7d commit aa89bae

File tree

3 files changed

+18
-27
lines changed

3 files changed

+18
-27
lines changed

product_docs/docs/epas/16/database_administration/14_edb_clone_schema/edb_clone_schema_overview.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,4 +94,4 @@ The following limitations apply:
9494
- For remote cloning, if an object in the source schema depends on an extension, then you must create this extension in the public schema of the remote database before invoking the remote cloning function.
9595
- At most, 16 copy jobs can run in parallel to clone schemas. Each job can have at most 16 worker processes to copy table data in parallel.
9696
- You can't cancel queries run by background workers.
97-
- Non-blocking cloning functions such as `localcopyschema_nb` and `remotecopyschema_nb` must be performed by a superuser. Only blocking cloning functions like `localcopyschema` and `remotecopyschema` can be performed by a non-superuser. Although these functions don't enforce the superuser requirement, using them as a non-superuser can lead to unexpected behavior.
97+
- Non-blocking cloning functions such as `localcopyschema_nb` and `remotecopyschema_nb` must be performed by a superuser. Only blocking cloning functions like `localcopyschema` and `remotecopyschema` can be performed by a non-superuser. Although these functions don't enforce the superuser requirement, using them as a non-superuser can lead to unexpected behavior.

product_docs/docs/epas/16/database_administration/14_edb_clone_schema/setting_up_edb_clone_schema.mdx

Lines changed: 9 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -9,22 +9,17 @@ In addition, it might help to modify some configuration parameters in the `postg
99

1010
## Installing extensions
1111

12-
Perform this installation on any database to be used as the source or target database by an EDB Clone Schema function.
12+
Install the following extensions on any database to be used as the source or target database by an EDB Clone Schema function: `postgres_fdw`, `dblink`, `edb_job_scheduler`, and `dbms_job`.
1313

14-
1. Install the following extensions on the database: `postgres_fdw`, `dblink`, `adminpack` and `pgagent`.
15-
1. Ensure that pgAgent is installed before creating the `pgagent` extension. On Linux, you can use the `edb-as<xx>-pgagent` RPM package, where `<xx>` is the EDB Postgres Advanced Server version number to install pgAgent. On Windows, use StackBuilder Plus to download and install pgAgent.
16-
17-
Install the extensions:
18-
19-
```sql
20-
CREATE EXTENSION postgres_fdw SCHEMA public;
21-
CREATE EXTENSION dblink SCHEMA public;
22-
CREATE EXTENSION adminpack;
23-
CREATE EXTENSION edb_job_scheduler;
24-
CREATE EXTENSION dbms_job;
25-
```
14+
```sql
15+
CREATE EXTENSION postgres_fdw SCHEMA public;
16+
CREATE EXTENSION dblink SCHEMA public;
17+
CREATE EXTENSION adminpack;
18+
CREATE EXTENSION edb_job_scheduler;
19+
CREATE EXTENSION dbms_job;
20+
```
2621

27-
For more information about using the `CREATE EXTENSION` command, see the [PostgreSQL core documentation](https://www.postgresql.org/docs/current/static/sql-createextension.html).
22+
For more information about using the `CREATE EXTENSION` command, see the [PostgreSQL core documentation](https://www.postgresql.org/docs/current/static/sql-createextension.html).
2823

2924
## Modifying the configuration file
3025

product_docs/docs/epas/17/database_administration/14_edb_clone_schema/setting_up_edb_clone_schema.mdx

Lines changed: 8 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -9,20 +9,16 @@ In addition, it might help to modify some configuration parameters in the `postg
99

1010
## Installing extensions
1111

12-
Perform this installation on any database to be used as the source or target database by an EDB Clone Schema function.
12+
Install the following extensions on any database to be used as the source or target database by an EDB Clone Schema function: `postgres_fdw`, `dblink`, `edb_job_scheduler`, and `dbms_job`.
1313

14-
1. Install the following extensions on the database: `postgres_fdw`, `dblink`, `edb_job_scheduler`, and `DBMS_JOB`.
15-
16-
Install the extensions:
17-
18-
```sql
19-
CREATE EXTENSION postgres_fdw SCHEMA public;
20-
CREATE EXTENSION dblink SCHEMA public;
21-
CREATE EXTENSION edb_job_scheduler;
22-
CREATE EXTENSION dbms_job;
23-
```
14+
```sql
15+
CREATE EXTENSION postgres_fdw SCHEMA public;
16+
CREATE EXTENSION dblink SCHEMA public;
17+
CREATE EXTENSION edb_job_scheduler;
18+
CREATE EXTENSION dbms_job;
19+
```
2420

25-
For more information about using the `CREATE EXTENSION` command, see the [PostgreSQL core documentation](https://www.postgresql.org/docs/current/static/sql-createextension.html).
21+
For more information about using the `CREATE EXTENSION` command, see the [PostgreSQL core documentation](https://www.postgresql.org/docs/current/static/sql-createextension.html).
2622

2723
## Modifying the configuration file
2824

0 commit comments

Comments
 (0)