BookmarkSubscribeRSS Feed
deleted_user
Not applicable
Hello,

Simple question...

I can't figure out how to output data step data to a sas server.

Do I use output, outfile, put after run????

For example, here's a simple implicit loop:

data output_data;
set sassvrtable.input_table;
run;
1 REPLY 1
Doc_Duke
Rhodochrosite | Level 12
Just add the LIBNAME to the output table in the DATA statement.

data sassvrtable.output_data;
set sassvrtable.input_table;
run;

You can find out a lot more about how to do libnames and permanent and work libraries in the data step concepts section of the Base SAS manual.
How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

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
  • 1 reply
  • 860 views
  • 0 likes
  • 2 in conversation