Table m_extract_parameter
Description:
Contains a list of parameters that an extract was run with (so it can be rerun)
PRIMARY KEY
m_extract_id_i
integer default: 0 NOT NULL
Identifier for the extract m_extract_master
m_parameter_code_c
varchar (50) NOT NULL
Extract Parameter Code
m_value_index_i
integer default: 0 NOT NULL
Index for Parameter Value. Only relevant if a parameter is a list of values in which case a new index is used for each list item.

m_parameter_value_c
varchar (200)
Extract Parameter Value
s_date_created_d
date default: CURRENT_DATE
The date the record was created.
s_created_by_c
varchar (20)
User ID of who created this record. s_user
s_date_modified_d
date
The date the record was modified.
s_modified_by_c
varchar (20)
User ID of who last modified this record. s_user
s_modification_id_t
timestamp default: CURRENT_TIMESTAMP
This identifies the current version of the record.


FOREIGN KEY
m_extract_parameter_fk1: m_extract_id_i => m_extract_master
m_extract_parameter_fkcr: s_created_by_c => s_user
m_extract_parameter_fkmd: s_modified_by_c => s_user