Files
mip/Data/BulkLoad/EFT/Nominations/schema/pass_exme_syco.sql

34 lines
3.3 KiB
SQL

prompt PL/SQL Developer import file
prompt Created on 01 May 2007 by GilbertA
set feedback off
set define off
prompt Loading EXCEPTION_MESSAGES...
insert into EXCEPTION_MESSAGES (EXCEPTION_NUMBER, MESSAGE, EXME_TYPE, CREATED_BY, CREATED_ON, EXME_COMMENT, UPDATED_BY, UPDATED_ON, LANGUAGE)
values (-20528, 'The password supplied does not meet the system requirements. The length should be at least <p1> characters.', 'E', null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), null, null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), 'EN');
insert into EXCEPTION_MESSAGES (EXCEPTION_NUMBER, MESSAGE, EXME_TYPE, CREATED_BY, CREATED_ON, EXME_COMMENT, UPDATED_BY, UPDATED_ON, LANGUAGE)
values (-20529, 'The password supplied does not meet the system requirements. The number of numeric characters should be greater than <p1>.', 'E', null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), null, null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), 'EN');
insert into EXCEPTION_MESSAGES (EXCEPTION_NUMBER, MESSAGE, EXME_TYPE, CREATED_BY, CREATED_ON, EXME_COMMENT, UPDATED_BY, UPDATED_ON, LANGUAGE)
values (-20530, 'The password supplied does not meet the system requirements. The number of uppercase characters should be greater than <p1>.', 'E', null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), null, null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), 'EN');
insert into EXCEPTION_MESSAGES (EXCEPTION_NUMBER, MESSAGE, EXME_TYPE, CREATED_BY, CREATED_ON, EXME_COMMENT, UPDATED_BY, UPDATED_ON, LANGUAGE)
values (-20531, 'The password supplied does not meet the system requirements. The number of lowercase characters should be greater than <p1>.', 'E', null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), null, null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), 'EN');
insert into EXCEPTION_MESSAGES (EXCEPTION_NUMBER, MESSAGE, EXME_TYPE, CREATED_BY, CREATED_ON, EXME_COMMENT, UPDATED_BY, UPDATED_ON, LANGUAGE)
values (-20532, 'The password supplied does not meet the system requirements. The number of non-alphabetic characters (<p1>) should be greater than <p2>.', 'E', null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), null, null, to_date('01-05-2007 10:29:42', 'dd-mm-yyyy hh24:mi:ss'), 'EN');
commit;
prompt Loading SYSTEM_CONFIGURATION...
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_PASSWORD_LENGTH', '8', 'The minimum password length');
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_PASSWORD_NUM_CHRS', '0', 'The number of numeric characters required.');
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_PASSWORD_UPP_CHRS', '0', 'The number of uppercase characters required.');
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_PASSWORD_LOW_CHRS', '0', 'The number of lowercase characters required.');
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_PASSWORD_SPC_CHRS', '0', 'The number of non numeric characters required.');
insert into SYSTEM_CONFIGURATION (SYCO_ID, PARAMETER, VALUE, DESCRIPTION)
values ( 'G_TIMESTAMP_URL', 'https://tsa.trust-sign.hu:1318/', 'URL for timestamping service');
commit;
set feedback on
set define on
prompt Done.