1                                         The SAS System            09:11 Tuesday, August 23, 2005

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_HOME  platform.



NOTE: SAS initialization used:
      real time           1.39 seconds
      cpu time            0.17 seconds
      

NOTE: AUTOEXEC processing beginning; file is d:\My 
      Projects\cdiscbuilder\testing\saspgm\autoexec.sas.

NOTE: Libref _TEMPLIB was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\cdiscbuilder\sashelp
NOTE: Libref _TEMPLIB was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\cdiscbuilder\sashelp
NOTE: Libref _TEMPLIB was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\cdiscbuilder\sashelp
NOTE: Libname COMDATA refers to the same physical library as _TEMPLIB.
NOTE: Libref COMDATA was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\cdiscbuilder\sashelp

NOTE: AUTOEXEC processing completed.

1          /*------------------------------------------------------------*
2          * program:     contents1.sas                                  *
3          * Description: Test the condition of missing source dataset.  *
4          *              Test the condition where the source dataset    *
5          *              does not exist.                                *
6          *              Test the condition where specified dataset     *
7          *              does not exist in the data source.             *
8          * By:          Tuan Anh, 23/08/2005                           *
9          *-------------------------------------------------------------*/
10         libname data '..\data\contents';
NOTE: Libref DATA was successfully assigned as follows: 
      Engine:        V9 
      Physical Name: d:\My Projects\cdiscbuilder\testing\data\contents
11         
12         %contents(indata=);

  
ERROR: [contents] is missing required parameter INDATA. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           1.87 seconds
      cpu time            0.15 seconds
2                                         The SAS System            09:11 Tuesday, August 23, 2005

      

13         
14         %contents(indata=invalid);

  
ERROR: [contents] contains an invalid libname specification for: invalid 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.10 seconds
      cpu time            0.00 seconds
      

15         
16         %contents(indata = data.ae data.invalid);

  
ERROR: [contents] was unable to find data  data.invalid  specified by parameter INDATA. 
  
NOTE: PROCEDURE DISPLAY used (Total process time):
      real time           0.39 seconds
      cpu time            0.01 seconds
      


NOTE: SAS Institute Inc., SAS Campus Drive, Cary, NC USA 27513-2414
NOTE: The SAS System used:
      real time           4.43 seconds
      cpu time            0.37 seconds
      
