Required Parameters Only
By default, specifies extended numeric analysis and no extended Unicode analysis.
call td_analyze ( 'textfieldanalyzer', 'database = val_source; tablename = customer; columns = all; outputdatabase = val_results; outputtablename = text_field_analysis;' );
Specifies Extended Numeric Analysis and No Extended Unicode Analysis
Functionally equivalent to the preceding example.
call td_analyze ('
textfieldanalyzer',
'database = val_source;
tablename = customer;
columns = cust_id,gender, marital_status;
outputdatabase = val_results;
outputtablename = text_field_analysis2;
extendednumericanalysis = true;
extendedunicodeanalysis = false;'
);