Previous Topic: 5.3.2.3 WLGAGL Usage Considerations

Next Topic: 5.3.3 HTTP Referer Log (WLGRFL) File

5.3.2.4 WLGAGL Retrieval Examples


This section present a typical WLGAGL retrieval example.

  Print a report listing each server's top 5 browsers.

     PROC SORT DATA=&PWEBD..WLGAGL01 OUT=WLGAGL01;
     BY WEBNAME AGLBRWSR;

     PROC SUMMARY DATA=WLGAGL01 NWAY;
       CLASS WEBNAME AGLBRWSR;
       VAR AGLCNT;
       OUTPUT OUT=NEW SUM=AGLCNT;
     RUN;

     OPTIONS OBS=5;

     PROC PRINT;