Column binding
Serwis pozwala walidować przed rozpoczęciem porównania, czy tabele można do siebie porównać. Służy do tego endpoint: POST /compare/bind
Przykład i opis body dla POST /compare/bind:
{
"sourceDatabaseConnectionInfo": {
"databaseType": "POSTGRES",
"url": "jdbc:postgresql://localhost:5432/postgres",
"username": "postgres",
"password": "postgres"
},
"targetDatabaseConnectionInfo": {
"databaseType": "ORACLE",
"url": "jdbc:oracle:thin:@localhost:1521:ORCLCDB",
"username": "system",
"password": "Oracle_123"
},
"sourceTables": [
{
"schema": "test_data",
"name": "cat"
},
{
"schema": "test_data",
"name": "cat2"
},
],
"targetTables": [
{
"schema": "SYSTEM",
"name": "CAT"
},
{
"schema": "SYSTEM",
"name": "CAT2"
},
]
}Przykład i opis response dla POST /compare/bind:
Last updated