What statement do you code to tell SAS that it is to write
to an external file? What statement do you code to write the
record to the file?
Answers were Sorted based on User's Feedback
Answer / kishan
1. file and put statements
2. Export Procedure
3. ODS also write the data to an external file
| Is This Answer Correct ? | 9 Yes | 0 No |
Answer / rishie
By using File and PUT statement you can write into an
external file
| Is This Answer Correct ? | 4 Yes | 0 No |
What is SAS informats?
how to do user inputs and command line arguments in sas?
how to add distinctly var variable values ex.. Data a; input var; datalines; 0 1 2 3 -1 -2 -3 ; run; adding all +ve value in one varibale n do the same for -ve too
what is the difference between nodup and nodupkey options? : Sas programming
What is the Program Data Vector (PDV)? What are its functions?
How could you generate test data with no input data?
How do you add a number to a macro variable?
Why Info School? BUILD YOUR CAREER WITH RIGHT GUIDANCE AND SUPPORT SAS Training in Data Management at InfoSchool Bangalore
Can you execute a macro within a macro? Describe. : sas-macro
How could i automate the code in the scenario:Every month one new data set will be created for that perticular month transaction list.Now i would like to update the data in the source table by appending every month data automatically. jan---set jan; feb---set jan feb; mar---set jan mar;
What is the purpose of trailing @ and @@? How do you use them?
how to delete the duplicates by using proc sql?