I modify some of the system tables including the SysUserAuth table. When I did an unload from the 11.7.3 database this is what I find near the end:
Code: Select all
ALTER TABLE SYSADM.SYSUSERAUTH ADD UW_SVM_REMARKS CHAR(100)
/
UPDATE SYSADM.SYSUSERAUTH SET
UW_SVM_REMARKS = 'UW researcher'
WHERE NAME = 'UWRESRCH'
AND RESOURCEAUTH = ' '
AND DBAAUTH = ' '
AND FLAG = 'R'
AND EXTUSER =
/
UPDATE SYSADM.SYSUSERAUTH SET
UW_SVM_REMARKS = 'Laboratory worker.'
WHERE NAME = 'LABWORKR'
AND RESOURCEAUTH = ' '
AND DBAAUTH = ' '
AND FLAG = 'R'
AND EXTUSER =
/
Removal of the "AND EXTUSER =" section allows the file to load.
A subsequent unload from the same database now loaded in 12.0.0 shows the same results; so the problem exists also in 12.0.0.
Clifford Bass