how do you read binary data in sas?
Answers were Sorted based on User's Feedback
Answer / april
proc cimport procedure allows us to convert a binary format
data into SAS dataset.
Syntax:
proc cimport infile= <binary format file> data=<dataset
name>;
run;
| Is This Answer Correct ? | 9 Yes | 3 No |
Answer / gk
u can also asci format also to read the binary data.
| Is This Answer Correct ? | 1 Yes | 8 No |
what is data integration? : Sas-di
What is SAS?
what is pdv? how it is related to input buffer in sas?
Can you execute a macro within a macro? Describe. : sas-macro
How to convert a numeric variable to a character variable?
what is proc Index? and what is proc document?
Mention some common errors that are usually committed in sas programming.
How do you control the number of observations and/or variables read or written?
What are the default statistics for means procedure?
In the flow of DATA step processing, what is the first action in a typical DATA Step?
here is a string like chq.2312244%4452- from that i want only special characters in a column. dont use compress. bcoz i have 1.2 billion of records.i want another process to find the values instant from the data.
Can you excute a macro within a macro? Describe.