The SAS Anti-Money Laundering Installation, Configuration, and Administration Guide tells you to run SQL scripts that create Oracle text indexes. If you choose not to create the Oracle text indexes, you might experience slow performance when you search for objects.
Oracle text indexes are required to run the installation Data Definition Language (DDL) programs without modification.
If you do not want to create the Oracle text indexes, you can modify some SQL queries in the sasaml.oracle file to improve search performance. The sasaml.oracle file exists inside the sas.financialservices.aml.jar file. Modify these query statements:
sasaml.createAlert.account.getNames=select distinct account_name from fsc_account_dim where contains(account_name, ?) >0 and change_current_ind = 'Y' order by account_name sasaml.createAlert.party.getNames=select distinct party_name from fsc_party_dim where contains(party_name, ?) >0 and change_current_ind = 'Y' order by party_name sasaml.createAlert.household.getNames=select distinct head_of_household_name from fsc_household_dim where contains(head_of_household_name, ?) >0 and change_current_ind = 'Y' order by head_of_household_name
Change the query statements to look like this:
sasaml.createAlert.account.getNames=select distinct account_name from fsc_account_dim where account_name LIKE ? and change_current_ind = 'Y' order by account_name sasaml.createAlert.party.getNames=select distinct party_name from fsc_party_dim where party_name LIKE ? and change_current_ind = 'Y' order by party_name sasaml.createAlert.household.getNames=select distinct head_of_household_name from fsc_household_dim where head_of_household_name LIKE ? and change_current_ind = 'Y' order by head_of_household_name
After changing the query statements in the sasaml.oracle file, the SAS Anti-Money Laundering web application must be redeployed and restarted on your web application server.
There are disadvantages to modifying the query statements.
The best performance and maintainability are obtained when the Oracle text indexes are defined, and the sas.financialservices.aml.jar file is not modified.
Product Family | Product | System | Product Release | SAS Release | ||
Reported | Fixed* | Reported | Fixed* | |||
SAS System | SAS Anti-Money Laundering | Microsoft® Windows® for x64 | 5.1 | |||
Microsoft Windows 8 Enterprise 32-bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8 Enterprise x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8 Pro 32-bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8 Pro x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8.1 Enterprise 32-bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8.1 Enterprise x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8.1 Pro | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 8.1 Pro 32-bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows 95/98 | 5.1 | |||||
Microsoft Windows 2000 Advanced Server | 5.1 | |||||
Microsoft Windows 2000 Datacenter Server | 5.1 | |||||
Microsoft Windows 2000 Server | 5.1 | |||||
Microsoft Windows 2000 Professional | 5.1 | |||||
Microsoft Windows NT Workstation | 5.1 | |||||
Microsoft Windows Server 2003 Datacenter Edition | 5.1 | |||||
Microsoft Windows Server 2003 Enterprise Edition | 5.1 | |||||
Microsoft Windows Server 2003 Standard Edition | 5.1 | |||||
Microsoft Windows Server 2003 for x64 | 5.1 | |||||
Microsoft Windows Server 2008 | 5.1 | |||||
Microsoft Windows Server 2008 R2 | 5.1 | |||||
Microsoft Windows Server 2008 for x64 | 5.1 | |||||
Microsoft Windows Server 2012 Datacenter | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows Server 2012 R2 Datacenter | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows Server 2012 R2 Std | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows Server 2012 Std | 5.1 | 6.2 | 9.4 TS1M2 | |||
Microsoft Windows XP Professional | 5.1 | |||||
Windows 7 Enterprise 32 bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Enterprise x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Home Premium 32 bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Home Premium x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Professional 32 bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Professional x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Ultimate 32 bit | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows 7 Ultimate x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Windows Millennium Edition (Me) | 5.1 | |||||
Windows Vista | 5.1 | |||||
Windows Vista for x64 | 5.1 | |||||
64-bit Enabled AIX | 5.1 | 6.2 | 9.4 TS1M2 | |||
64-bit Enabled Solaris | 5.1 | 6.2 | 9.4 TS1M2 | |||
HP-UX IPF | 5.1 | 6.2 | 9.4 TS1M2 | |||
Linux for x64 | 5.1 | 6.2 | 9.4 TS1M2 | |||
Solaris for x64 | 5.1 | 6.2 | 9.4 TS1M2 |
Type: | Installation Note |
Priority: | alert |
Date Modified: | 2014-04-16 17:14:58 |
Date Created: | 2014-03-17 17:28:27 |