BookmarkSubscribeRSS Feed
jerry898969
Pyrite | Level 9

I'm doing a proc upload to a linux server.  The issue i'm having is that the SAS Data Set Index (*.sas7bndx) files are also uploaded.  How can I exclude them from being moved?

rsubmit;

proc upload in=temp out=tempOut ;

    select tab1 tab2 tab3 etc..... ;

run ;

endrsubmit;

I only want tab1.sas7bdat not tab1.sas7bndx

Thank you

2 REPLIES 2
FriedEgg
SAS Employee

libname educlib 'sasdemo.educcats.screens' server=abcserv sapw=demopw;

libname tempOut '.';

proc datasets;

copy in=educlib out=tempOut index=no;

select tab1 tab2 tab3 etc......;

run;

quit;

PROC UPLOAD only allows for the upload or the destination-side recreation of an index.  If you want to no have an index at all after the transfer use a different procedure, such as PROC DATASETS.

jerry898969
Pyrite | Level 9

Hi FriedEgg,

Thank you for your reply. 

This is currently how I have to connect to my linux version of sas.

options netencryptalgorithm = tripledes ;

%let host=xxxxxxxx.xxx ;

signon host.10000 user=temp password=temp1 ;

Is there a way to use proc datasets within rsubmit?

Thanks again.

hackathon24-white-horiz.png

The 2025 SAS Hackathon has begun!

It's finally time to hack! Remember to visit the SAS Hacker's Hub regularly for news and updates.

Latest Updates

What is Bayesian Analysis?

Learn the difference between classical and Bayesian statistical approaches and see a few PROC examples to perform Bayesian analysis in this video.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 1112 views
  • 3 likes
  • 2 in conversation