Our DBAs ran into a problem with one of the SQL scripts needed for the upgrade. They wanted to know if what they did to resolve the issue is OK. This occurred in the script “WS-Upgrade-11.4.0-to-11.5.0.ms.sql”.
Script failed on
insert into userTypeOptions(userTypeId,theOption) select 3,'universal_editor.find_replace'
where not exists
(select 1 from userTypeOptions where userTypeId=3 and theOption='universal_editor.find_replace')
By adding a row to userTypes (pk 3) the error was resolved.