Supporting New Key in User Data Repository

UDR is capable to support a new KEY as run time. To use this feature, user needs to put entry in KEY_MAP table and create a indexing table.

Pre-requisite: Login to the NDB Cluster's SQL node with configured username and password.

Create Entry in KEY_MAP Table:

INSERT INTO KEY_MAP VALUES('EXT_ID', 'INT_ID', 'TABLE_NAME', 'REGEX_PATTERN');

Example:

INSERT INTO KEY_MAP VALUES('MSISDN2', 'ID4', 'ID4TODATA', '^[0-9]{5,15}$');