Hello,
after move to windows 10, i have a problem with Compare table data. If any generated sql command included no ascii chars then sql commands for whole table are ommited in Differences tab.
In Developer window i see this only
But in tmp file Compare.sql is
Bytes of "d>z" in hex are - ef bb bf
Byte of "a`" is - e1
after move to windows 10, i have a problem with Compare table data. If any generated sql command included no ascii chars then sql commands for whole table are ommited in Differences tab.
In Developer window i see this only
SQL:
rem Differences between <CURRENT USER>@SERVER1 and KAJMAN@SERVER2, created on 20.01.2017
rem Press Apply button, or run in Command Window or SQL*Plus connected as KAJMAN@SERVER2
-- TABLE KAJ_TMP
-- Deleting ...
-- Updating ...
-- Inserting ...
-- 2 row(s) total
-- 2 row(s) read
-- 0 row(s) deleted
-- 2 row(s) inserted
-- 0 row(s) updated
-- TABLE KAJ_TMP2
-- Deleting ...
-- Updating ...
-- Inserting ...
-- 2 row(s) total
-- 2 row(s) read
-- 0 row(s) deleted
-- 2 row(s) inserted
-- 0 row(s) updated
INSERT INTO KAJ_TMP2 T (ID, TEXT)
VALUES (1, 'a');
INSERT INTO KAJ_TMP2 T (ID, TEXT)
VALUES (2, 'b');
COMMIT;
But in tmp file Compare.sql is
SQL:
-- TABLE KAJ_TMP
-- Deleting ...
-- Updating ...
-- Inserting ...
-- 2 row(s) total
-- 2 row(s) read
-- 0 row(s) deleted
-- 2 row(s) inserted
-- 0 row(s) updated
d>zINSERT INTO KAJ_TMP T (ID, TEXT)
VALUES (1, 'a`');
INSERT INTO KAJ_TMP T (ID, TEXT)
VALUES (2, 'b');
COMMIT;
-- TABLE KAJ_TMP2
-- Deleting ...
-- Updating ...
-- Inserting ...
-- 2 row(s) total
-- 2 row(s) read
-- 0 row(s) deleted
-- 2 row(s) inserted
-- 0 row(s) updated
d>zINSERT INTO KAJ_TMP2 T (ID, TEXT)
VALUES (1, 'a');
INSERT INTO KAJ_TMP2 T (ID, TEXT)
VALUES (2, 'b');
COMMIT;
Bytes of "d>z" in hex are - ef bb bf
Byte of "a`" is - e1
Code:
PL/SQL Developer
Version 11.0.6.1796 (64 bit)
Windows 10 Build 14393
Character Sets
Character size: 4 byte(s)
CharSetID: 873
NCharSetID: 2000
Unicode Support: True
NLS_LANG: CZECH_CZECH REPUBLIC.EE8MSWIN1250
NLS_CHARACTERSET: AL32UTF8
NLS_NCHAR_CHARACTERSET: AL16UTF16
Last edited: