Fiche Data Prep

Action Principale : buildTermIndex

Code de préparation

Script en attente de validation
Copié !
1DATA casuser.myDocs(label="Table de documents bruts");
2 LENGTH docid 8 text $200;
3 INFILE DATALINES dsd;
4 INPUT docid text $;
5 DATALINES;
61,SAS Viya has powerful CAS actions.
72,Search analytics in SAS is great.
83,This is another document about SAS.
9;
10RUN;
11 
12DATA casuser.myTermList(label="Table de termes pré-calculés");
13 LENGTH _Term_ $ 20 _Parent_ 8;
14 INFILE DATALINES dsd;
15 INPUT _Term_ $ _Parent_;
16 DATALINES;
17sas,1
18viya,1
19cas,1
20ACTION,1
21search,2
22analytics,2
23sas,2
24index,3
25term,3
26sas,3
27;
28RUN;
Actions utilisant ce script
  • searchAnalytics buildTermIndex En cours
  • Aucune autre action n'utilise ce script exact.