BookmarkSubscribeRSS Feed
☑ This topic is solved. Need further help from the community? Please sign in and ask a new question.
alepage
Barite | Level 11

Hello I am using the following command to get the listing of the S3 bucket. it goes into the log file.

How to put it into a SAS dataset?

 

%let s3bucketpath=s3://***-pr-brz-datareten-edp-nprod;

filename oscmd pipe "aws s3 ls ""&s3bucketpath."" ";
1 ACCEPTED SOLUTION

Accepted Solutions
ChrisHemedinger
Community Manager

You need to pair this PIPE output with a DATA step, something like:

 

data WANT; 
  infile oscmd pad; 
  input LINE 256.;
  /* parse the line into fields */
  FNAME=substr(X,..); 
run;
SAS Innovate 2025: Call for Content! Submit your proposals before Sept 25. Accepted presenters get amazing perks to attend the conference!

View solution in original post

3 REPLIES 3
ChrisHemedinger
Community Manager

You need to pair this PIPE output with a DATA step, something like:

 

data WANT; 
  infile oscmd pad; 
  input LINE 256.;
  /* parse the line into fields */
  FNAME=substr(X,..); 
run;
SAS Innovate 2025: Call for Content! Submit your proposals before Sept 25. Accepted presenters get amazing perks to attend the conference!
alepage
Barite | Level 11

I am not familliar with pad

 

What does it stand for ?

Tom
Super User Tom
Super User

@alepage wrote:

I am not familliar with pad

 

What does it stand for ?


It means what it sounds like.  The lines are padded with spaces to the full logical record length.

Not much use for it since they introduced the TRUNCOVER option some 30 to 40 years ago.

SAS Innovate 2025: Call for Content

Are you ready for the spotlight? We're accepting content ideas for SAS Innovate 2025 to be held May 6-9 in Orlando, FL. The call is open until September 25. Read more here about why you should contribute and what is in it for you!

Submit your idea!

SAS Enterprise Guide vs. SAS Studio

What’s the difference between SAS Enterprise Guide and SAS Studio? How are they similar? Just ask SAS’ Danny Modlin.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 3 replies
  • 460 views
  • 1 like
  • 3 in conversation