Online File

How to use this page


Rick Aster: Professional SAS Programming Secrets: Contents

Chapter 9
Program 9k
Copy with APPEND procedure


*
  Professional SAS Programming Secrets
  Program 9k
  Copy with APPEND procedure
*;
proc datasets library=work nolist nowarn;
delete to (mtype=data) to (mtype=view);
quit;
proc append data=work.from out=work.to;
run;

 O /\

Global
Statements

RICK ASTER

SAS

BOOKS

Tech | Dictionary

Download | Rastinate

Rick Aster

Professional SAS Programming Secrets

Contents/Online Files

Corrections