1                                          The SAS System           11:49 Tuesday, February 17, 2009

NOTE: Copyright (c) 2002-2003 by SAS Institute Inc., Cary, NC, USA. 
NOTE: SAS (r) 9.1 (TS1M3)
      Licensed to META-XCEED INC, Site 0035729001.
NOTE: This session is executing on the XP_PRO  platform.



NOTE: SAS 9.1.3 Service Pack 2

NOTE: SAS initialization used:
      real time           0.56 seconds
      cpu time            0.40 seconds
      

NOTE: AUTOEXEC processing beginning; file is D:\TEST 
      SCRIPT\CDISCBUILDER\testing\saspgm\autoexec.sas.


----> This is the part of the autoexec.
NOTE: DATA statement used (Total process time):
      real time           0.01 seconds
      cpu time            0.01 seconds
      


NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     matchvar5.sas                                  *
3          * Description: Verify that variables that match and variables *
4          *              that closely match are captured.				    *
5          * By:          Meta-Xceed, Inc.                               *
6          *              Nghi Vu, 08/19/2005                            *
7          *-------------------------------------------------------------*/
8          libname data '..\data\matchvar';
NOTE: Libref DATA was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: D:\TEST SCRIPT\CDISCBUILDER\testing\data\matchvar
9          data data.matchvar4;
10            attrib
11            usubjid	 length=$10 label='Unique Subject ID'
12            team	 length=$20 label='Team';
13            usubjid=1;
14            Team='Juventus';
15            output;
16         
17         run;

NOTE: Numeric values have been converted to character values at the places given by: 
      (Line):(Column).
      13:12   
NOTE: The data set DATA.MATCHVAR4 has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.07 seconds
2                                          The SAS System           11:49 Tuesday, February 17, 2009

      cpu time            0.04 seconds
      

18         data data.matchvar5;
19            attrib
20            patnum	 length=$10 label='Unique Subject ID'
21            team	 length=$20 label='Team';
22            patnum=1;
23            Team='AC Milan';
24            output;
25         
26         run;

NOTE: Numeric values have been converted to character values at the places given by: 
      (Line):(Column).
      22:11   
NOTE: The data set DATA.MATCHVAR5 has 1 observations and 2 variables.
NOTE: DATA statement used (Total process time):
      real time           0.04 seconds
      cpu time            0.04 seconds
      

27         
28         
29         %matchvar(path_a=..\data\matchvar,dat_a1=matchvar4,dat_a2=matchvar5);
NOTE: Libref CDISCBLD was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: C:\Program Files\MetaXceed\Cdiscbuilder\saspgm

NOTE: The execution of this query involves performing one or more Cartesian product joins that can 
      not be optimized.
NOTE: Table WORK.DATPAT created, with 4 rows and 6 columns.

NOTE: 1 row was inserted into WORK.MATCHV1.

NOTE: 1 row was inserted into WORK.MATCHV2.

NOTE: 1 row was inserted into WORK.MATCHV2.

  
NOTE: [matchvest] was successful at creating D:\TEST 
SCRIPT\CDISCBUILDER\testing\saspgm\matchvar1.html. 
  
  
NOTE: [matchvest] was successful at creating D:\TEST 
SCRIPT\CDISCBUILDER\testing\saspgm\matchvar2.html. 
  
  
NOTE: [matchvest] was successful at creating D:\TEST 
SCRIPT\CDISCBUILDER\testing\saspgm\matchvar.html. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.50 seconds
      cpu time            0.32 seconds
3                                          The SAS System           11:49 Tuesday, February 17, 2009

      


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           1.36 seconds
      cpu time            0.93 seconds
      
