View Revisions: Issue #4514

Summary 0004514: DbCompare: The output script to fix issues on the target does not support null values.
Revision 2020-09-16 17:49 by elong
Description It will write SQL update statement with "where COLUMN = null" instead of "where COLUMN is not null" or "where COLUMN is null".
As it is pointing to the expected PK, I understand that null is not expected, but still it could exist. On Oracle, it will allow a NULL value for primary key column.
Revision 2020-08-31 12:07 by pmarzullo
Description It will contain "where COLUMN = null" instead of where COLUMN is not null or where COLUMN is null.
As it is pointing to the expected PK, I understand that null is not expected, but still I could exist.