Online File

How to use this page


Rick Aster: Professional SAS Programming Shortcuts: Contents

Chapter 23
Program
Creating integrity constraints


proc datasets library=corp nolist;
modify newhire; 
   ic create born=check(where=(dob < date()))
       message='Birth date must be before today.';
   ic create est_hire=check(where=(hiredate >= '01jan1989'd))
       message='Hire date is missing or is too early.';
quit;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Shortcuts

Contents/Online Files

Corrections

Catalog Page