Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 10
Program 10f
Creating and deleting indexes


*
  Professional SAS Programming Secrets
  Program 10f
  Creating and deleting indexes
*;
proc datasets library=work;
modify a;
   index create a;
   index create b;
   index create a3=(a b c);
   index create c2=(c d);
quit;

proc datasets library=work;
modify a;
   index delete a b a3 c2;
quit;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections