git-svn-id: http://locode01.ad.dom/svn/WEBMIP/trunk@50874 248e525c-4dfb-0310-94bc-949c084e9493

This commit is contained in:
andrew.gilmore
2012-03-19 11:57:19 +00:00
parent 2a0f4900c3
commit 0e9ca75d77
1587 changed files with 500863 additions and 0 deletions

View File

@@ -0,0 +1,33 @@
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.