Problem Note 40946: MySQL SAS/ACCESS engine requires primary key on FSK_SEQUENCE and FSK_ASSESSMENT_SEQUENCE in SAS® Anti-Money Laundering
The SAS/ACCESS Engine for MySQL produces the following error when an update statement is executed against the FSK_SEQUENCE or FSK_ASSESSMENT_SEQUENCE table in SAS Anti-Money Laundering:
ERROR: The requested update did not occur. The table FSK_SEQUENCE does not
contain a primary key.
The circumvention for this issue is to add a primary key to the appropriate table (FSK_SEQUENCE or FSK_ASSESSMENT_SEQUENCE) and then rebuild the view that points to that table.
For example:
Add a primary key to the appropriate table:
ALTER TABLE amlctr.fsk_sequence add constraint PRIMARY KEY
("next_sequence_id","segment_id");
and then rebuild the view that points to that table:
DROP VIEW IF EXISTS "bank1kctr"."fsk_sequence";
CREATE VIEW "bank1kctr"."fsk_sequence" AS
select "amlctr"."fsk_sequence"."next_sequence_id" AS "next_sequence_id"
from "amlctr"."fsk_sequence"
where ("amlctr"."fsk_sequence"."segment_id" = 'BANK1KCTR');
Operating System and Release Information
| SAS System | SAS Anti-Money Laundering | 64-bit Enabled Solaris | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| 64-bit Enabled HP-UX | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| 64-bit Enabled AIX | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Windows Vista for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Windows Vista | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows XP Professional | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2008 for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 Standard Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 Enterprise Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 Datacenter Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft® Windows® for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows XP 64-bit Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 Datacenter 64-bit Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft Windows Server 2003 Enterprise 64-bit Edition | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Microsoft® Windows® for 64-Bit Itanium-based Systems | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| HP-UX IPF | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Linux | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Linux for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
| Solaris for x64 | 4.1 | 4.2 | 9.2 TS2M0 | 9.2 TS2M3 |
*
For software releases that are not yet generally available, the Fixed
Release is the software release in which the problem is planned to be
fixed.
| Type: | Problem Note |
| Priority: | medium |
| Date Modified: | 2011-12-21 16:03:04 |
| Date Created: | 2010-09-17 16:50:13 |