Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 11
Program 11f
Checking the time


*
  Professional SAS Programming Secrets
  Program 11f
  Checking the time
*;

data _null_;
   session_datetime = "&SYSDATE9. &SYSTIME."dt;
   session_date = "&SYSDATE9."d;
   session_time = "&SYSTIME."t;
   current_datetime = datetime();
   current_date = date();
   current_time = time();

   put _all_;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections