Skip to content

Commit

Permalink
3.0.2 release update
Browse files Browse the repository at this point in the history
Signed-off-by: Dj Walker-Morgan <[email protected]>
  • Loading branch information
djw-m committed Nov 11, 2024
1 parent ea1240e commit ee8262d
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 3 deletions.
8 changes: 8 additions & 0 deletions product_docs/docs/livecompare/3/oracle_support.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,14 @@ For example, you can define `technology = oracle` in a data connection. You can

All other data connections must be PostgreSQL.

The `user` you use to connect to Oracle must have the necessary privileges to read the data from the tables you want to compare. Specifically, `CONNECT`, `SELECT ANY TABLE` and `SELECT_CATALOG_ROLE`. These can be granted with the command:

```sql
GRANT CONNECT, SELECT ANY TABLE, SELECT_CATALOG_ROLE TO username;
```

Where `username` is the user you want to use to connect to Oracle.

Here's a simple example of comparison between an Oracle database and a PostgreSQL database:

```ini
Expand Down
15 changes: 15 additions & 0 deletions product_docs/docs/livecompare/3/rel_notes/3.0.2_rel_notes.mdx
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: "LiveCompare 3.0.2 release notes"
navTitle: Version 3.0.2
---

Released: 21 November 2024

LiveCompare 3.0.2 includes the following new features, enhancements, bug fixes, and other changes:



| Type | Description | Addresses |
|:--------|:---------------------------------------------------------------------------------|:----------|
| Bug Fix | Fixed an issue which caused the application to crash when using replication sets | |
| Enhancement | Revised documentation to clarify what roles are required for Oracle | |
8 changes: 5 additions & 3 deletions product_docs/docs/livecompare/3/rel_notes/index.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,15 @@
title: Release notes
originalFilePath: release_notes.md
navigation:
- 3.0.2_rel_notes
- 3.0.1_rel_notes
---

The LiveCompare documentation describes the latest version of LiveCompare 3 including minor releases and patches. The release notes in this section provide information on what's new in each release.
The LiveCompare documentation describes the latest version of LiveCompare 3 including minor releases and patches. The release notes in this section provide information on what's new in each release.

| Version | Release Date |
|--------------------------|--------------|
| Version | Release Date |
|------------------------------|--------------|
| [3.0.2](3.0.2_rel_notes.mdx) | Nov 21 2024 |
| [3.0.1](3.0.1_rel_notes.mdx) | Sep 30 2024 |


Expand Down

0 comments on commit ee8262d

Please sign in to comment.