Skip to content

Commit 9eaec9e

Browse files
Merge pull request #1324 from EnterpriseDB/release/2021-04-30
Former-commit-id: e373421
2 parents 7d04710 + 2a6c76a commit 9eaec9e

File tree

15 files changed

+52
-55
lines changed

15 files changed

+52
-55
lines changed

advocacy_docs/supported-open-source/barman/single-server-streaming/step01-db-setup.mdx

+6-5
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,13 @@ katacodaPanel:
1717
iconName: coffee
1818
---
1919

20-
This demo is interactive. You can follow along right in your browser, using Katacoda, by clicking the button below.
20+
In this step, we'll configure a PostgreSQL server, preparing it to be backed up using Barman.
2121

22-
!!! Note
23-
When you click "Start Now," Katacoda will load a Docker Compose environment with two container images representing a
24-
PostgreSQL 13 server with [the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
25-
and a backup server for Barman.
22+
!!!interactive This demo is interactive
23+
You can follow along right in your browser. When you click "Start Now," Katacoda will load a Docker Compose
24+
environment with two container images representing a PostgreSQL 13 server with
25+
[the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
26+
and a backup server for Barman (named `backup`).
2627

2728
Once you see a `postgres@pg` prompt, you can follow the steps below.
2829

advocacy_docs/supported-open-source/barman/single-server-streaming/step02-backup-setup.mdx

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ iconName: coffee
1717

1818
In [the previous step](step01-db-setup), we configured the PostgreSQL server, creating users for Barman to connect and manage backups. In this step, we'll install and configure Barman on the backup server.
1919

20-
This demo is interactive. You can follow along right in your browser, using Katacoda, by clicking the button below.
20+
!!!interactive This demo is interactive
21+
You can follow along right in your browser. When you click "Start Now," Katacoda will load a Docker Compose
22+
environment with two container images representing a PostgreSQL 13 server with
23+
[the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
24+
and a backup server for Barman (named `backup`).
2125

22-
!!! Note
23-
When you click "Start Now," Katacoda will load a Docker Compose environment with two container images representing a
24-
PostgreSQL 13 server with [the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
25-
and a backup server for Barman.
26-
2726
Once you see a `root@backup` prompt, you can follow the steps below.
2827

2928
<KatacodaPanel />

advocacy_docs/supported-open-source/barman/single-server-streaming/step03-backup.mdx

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,12 +17,11 @@ iconName: coffee
1717

1818
With [the Barman server configured in our last step](step02-backup-setup), we can run a full backup (or "base backup").
1919

20-
This demo is interactive. You can follow along right in your browser, using Katacoda, by clicking the button below.
21-
22-
!!! Note
23-
When you click "Start Now," Katacoda will load a Docker Compose environment with two container images representing a
24-
PostgreSQL 13 server with [the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
25-
and a backup server for Barman.
20+
!!!interactive This demo is interactive
21+
You can follow along right in your browser. When you click "Start Now," Katacoda will load a Docker Compose
22+
environment with two container images representing a PostgreSQL 13 server with
23+
[the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
24+
and a backup server for Barman (named `backup`).
2625

2726
Once you see a `barman@backup` prompt, you can follow the steps below.
2827

advocacy_docs/supported-open-source/barman/single-server-streaming/step04-restore.mdx

+5-6
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,12 @@ iconName: coffee
1717

1818
In the previous step, [we created a full backup of the example database](step03-backup). But it's not a real backup until we've successfully restored it - so let's end with that.
1919

20-
This demo is interactive. You can follow along right in your browser, using Katacoda, by clicking the button below.
20+
!!!interactive This demo is interactive
21+
You can follow along right in your browser. When you click "Start Now," Katacoda will load a Docker Compose
22+
environment with two container images representing a PostgreSQL 13 server with
23+
[the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
24+
and a backup server for Barman (named `backup`).
2125

22-
!!! Note
23-
When you click "Start Now," Katacoda will load a Docker Compose environment with two container images representing a
24-
PostgreSQL 13 server with [the Pagila database](https://github.com/devrimgunduz/pagila) loaded (named `pg`)
25-
and a backup server for Barman.
26-
2726
Once you see a `barman@backup` prompt, you can follow the steps below.
2827

2928
<KatacodaPanel />

product_docs/docs/epas/13/epas_compat_table_partitioning/04_partitioning_commands_compatible_with_oracle_databases/06_alter_table_exchange_partition/01_example_exchanging_a_table_for_a_partition.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ CREATE TABLE sales
1616
dept_no number,
1717
part_no varchar2,
1818
country varchar2(20),
19-
date date,
20-
amount number
19+
date date,
20+
amount number
2121
)
2222
PARTITION BY LIST(country)
2323
(
@@ -70,8 +70,8 @@ CREATE TABLE n_america
7070
dept_no number,
7171
part_no varchar2,
7272
country varchar2(20),
73-
date date,
74-
amount number
73+
date date,
74+
amount number
7575
);
7676
```
7777

product_docs/docs/epas/13/epas_compat_table_partitioning/04_partitioning_commands_compatible_with_oracle_databases/08_alter_table_rename_partition/01_example_renaming_a_partition.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ CREATE TABLE sales
1616
dept_no number,
1717
part_no varchar2,
1818
country varchar2(20),
19-
date date,
20-
amount number
19+
date date,
20+
amount number
2121
)
2222
PARTITION BY LIST(country)
2323
(

product_docs/docs/epas/13/epas_compat_table_partitioning/04_partitioning_commands_compatible_with_oracle_databases/13_alter_table_drop_partition/01_example_deleting_a_partition.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ CREATE TABLE sales
1616
dept_no number,
1717
part_no varchar2,
1818
country varchar2(20),
19-
date date,
20-
amount number
19+
date date,
20+
amount number
2121
)
2222
PARTITION BY LIST(country)
2323
(

product_docs/docs/epas/13/epas_compat_table_partitioning/04_partitioning_commands_compatible_with_oracle_databases/14_alter_table_drop_subpartition/01_example_deleting_a_subpartition.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ CREATE TABLE sales
1616
dept_no number,
1717
part_no varchar2,
1818
country varchar2(20),
19-
date date,
20-
amount number
19+
date date,
20+
amount number
2121
)
2222
PARTITION BY RANGE(date)
2323
SUBPARTITION BY LIST (country)

product_docs/docs/epas/13/epas_compat_table_partitioning/04_partitioning_commands_compatible_with_oracle_databases/15_truncate_table/01_example_emptying_a_table.mdx

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ CREATE TABLE sales
1616
dept_no number,
1717
part_no varchar2,
1818
country varchar2(20),
19-
date date,
20-
amount number
19+
date date,
20+
amount number
2121
)
2222
PARTITION BY LIST(country)
2323
(

product_docs/docs/epas/13/epas_compat_table_partitioning/06_specifying_multiple_partitioning_keys_in_a_range_partitioned_table.mdx

+4-4
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ Range-partitioned table definitions may include multiple columns in the partitio
1717
```text
1818
CREATE TABLE sales
1919
(
20-
dept_no number,
21-
part_no varchar2,
22-
country varchar2(20),
20+
dept_no number,
21+
part_no varchar2,
22+
country varchar2(20),
2323
sale_year number,
2424
sale_month number,
2525
sale_day number,
26-
amount number
26+
amount number
2727
)
2828
PARTITION BY RANGE(sale_year, sale_month)
2929
(

product_docs/docs/migration_toolkit/54.0.0/01_whats_new.mdx

+2-13
Original file line numberDiff line numberDiff line change
@@ -8,17 +8,6 @@ legacyRedirectsGenerated:
88

99
<div id="whats_new" class="registered_link"></div>
1010

11-
The following enhancements are added to the EDB Postgres Migration Toolkit for 54.0.0 release:
11+
The following have been added to the EDB Postgres Migration Toolkit for the 54.0.1 release:
1212

13-
- Migration Toolkit now supports:
14-
15-
- Postgres and EDB Postgres Advanced Server version 13
16-
17-
- Ubuntu version 20
18-
19-
- Windows (64-bit)
20-
21-
!!! Note
22-
If you have an existing 32-bit Windows Migration Toolkit installation, you must uninstall and reinstall Migration Toolkit with the Windows 64-bit installer.
23-
24-
For complete list of supported platforms, see [Supported Operating Systems and Database Versions](02_supported_operating_systems_and_database_versions/#supported_operating_systems_and_database_versions).
13+
- Fixed customer escalations

product_docs/docs/migration_toolkit/54.0.0/05_installing_mtk.mdx

+3-3
Original file line numberDiff line numberDiff line change
@@ -442,13 +442,13 @@ If you are using StackBuilder Plus to add Migration Toolkit to your EDB Postgres
442442
!!! Note
443443
If you are using Stack Builder to add Migration Toolkit to your PostgreSQL installation, expand the `EnterpriseDB Tools` node of the tree control (`located under the Registration-required and trial productsnode`), and select `Migration Toolkit` checkbox. Click `Next` to continue.
444444

445-
![The Stack Builder application selection window.](images/installing_mtk_sbp_categories.png)
445+
![The Stack Builder application selection window.](images/installing_mtk_sbp_categories_1.png)
446446

447447
*The Stack Builder application selection window*
448448

449449
Confirm that Migration Toolkit is included in the `Selected Packages` list and that the `Download directory` field contains an acceptable download location.
450450

451-
![The Stack Builder selection confirmation window.](images/installing_mtk_sbp_selected_packages.png)
451+
![The Stack Builder selection confirmation window.](images/installing_mtk_sbp_selected_packages_1.png)
452452

453453
*The Stack Builder selection confirmation window*
454454

@@ -510,7 +510,7 @@ To launch the installer:
510510

511511
- Navigate to the file path in the terminal:
512512

513-
/&lt;User/Directory>/Downloads/edb-migrationtoolkit-54.0.0-1-osx.app/Contents/MacOS
513+
/&lt;User/Directory>/Downloads/edb-migrationtoolkit-54.0.1-1-osx.app/Contents/MacOS
514514

515515
- Assume superuser privileges and invoke the following command:
516516

product_docs/docs/migration_toolkit/54.0.0/06_building_toolkit.properties_file.mdx

+4
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,10 @@ When migrating from MySQL, `SRC_DB_URL` takes the form of a JDBC URL. For exampl
168168
jdbc:mysql://<host_name>[:<port>]/<database_id>
169169
```
170170

171+
!!! Note
172+
For MTK versions `54.0.1` and onwards append the optional parameter `?tinyInt1isBit=false` in the JDBC URL if datatype `tinyInt` is used to represent boolean value in the MySQL source database.
173+
174+
171175
The URL contains the following information:
172176

173177
- `jdbc` The protocol is always `jdbc`.
Loading

0 commit comments

Comments
 (0)