...
In case you are missing any one of the settings (313, 315, 318, 325), please run the corresponding SQL as follows:
Code Block | ||
---|---|---|
| ||
if not exists (select * from PAT_CONFIGURATION where configuration_id = 325) INSERT INTO PAT_CONFIGURATION (configuration_id,label,description,type,string_value,maintained_by_patrix,group_flag) VALUES (325,'Use NuxeoLib.dll','Use NuxeoLib.dll',3,'FALSE',1,7); if not exists (select * from PAT_CONFIGURATION where configuration_id = 313) INSERT INTO PAT_CONFIGURATION (configuration_id,label,description,type,string_value,maintained_by_patrix,group_flag) VALUES (313,'Installation ID','Installation ID',2,'<enter id here>',1,7); if not exists (select * from PAT_CONFIGURATION where configuration_id = 315) INSERT INTO PAT_CONFIGURATION (configuration_id,label,description,type,string_value,maintained_by_patrix,group_flag) VALUES (315,'Nuxeo hostname and port','Nuxeo hostname and port',2,'hostname:port',1,7); if not exists (select * from PAT_CONFIGURATION where configuration_id = 318) INSERT INTO PAT_CONFIGURATION (configuration_id,label,description,type,string_value,maintained_by_patrix,group_flag) VALUES (318,'Enable checksums for case numbers','Enable checksums for case numbers',3,'TRUE',1,7); |
...