Chapter Contents

Previous

Next
SAS/CONNECT User's Guide

Example 5. DTS: Transferring Long Member Names


Purpose

SAS/CONNECT supports the transfer of long member names for single data set transfers, as long as the host supports long member names. This example uses PROC UPLOAD and PROC DOWNLOAD to transfer a data set and a catalog that have long member names:


Program

rsubmit;
   proc upload in=work out=sasuser;
      select longdatasetname(mt=data) 
      cat longcatalogname/mt=cat;
   run;

   data x.sas_institute_employee_data;
     set empdata;
   run;

   proc download inlib=x outlib=work;
   run;
endrsubmit;


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.