how do you read binary data in sas?

Answers were Sorted based on User's Feedback



how do you read binary data in sas?..

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

how do you read binary data in sas?..

Answer / koduri

using date format
input date ib4.;

Is This Answer Correct ?    7 Yes 6 No

how do you read binary data in sas?..

Answer / gk

u can also asci format also to read the binary data.

Is This Answer Correct ?    1 Yes 8 No

Post New Answer

More SAS Interview Questions

What are the efficacy variables in your study?

2 Answers   Accenture, Quintiles,


In SAS how to read the variable values having different formats. eg:mar99,mar1999 (in a single variable)

8 Answers   GSK GlaxoSmithKline,


what other sas products have you used and consider yourself proficient in using? : Sas programming

0 Answers  


How to write duplicate records into a separate dataset using sort?

4 Answers   HSBC,


how will you locate the sas platform applications? : Sas-bi

0 Answers  






what is a post baseline?

2 Answers   Accenture,


How do you specify the number of iterations and specific condition within a single do loop?

0 Answers  


What is the basic structure of a sas program?

0 Answers  


hi here is a problem can anybody solve this? i want to report the data through third party file. by using data _null_ or proc report or macro automation process. but i want to insert the 'titles and footnotes' in between the data and also starting of 2nd and ending of 2nd and starting of 3rd and ending of the 3rd page. tell me how and write the code?

0 Answers   Cognizant,


Could you please answers for this. 1.Code the tables statement for a single-level (most common) frequency. 2.Code the tables statement to produce a multi-level frequency.

2 Answers  


What is SAS? is it a software just for use or we can creat something over there?

5 Answers   Cognizant,


i have multiple .csv files in a unix directory. every file is having variable names as header.even for empty file also. suppose take 3 files a.csv b.csv c.csv a.csv contains data as name;age,salary; raja;34;4000; ravi;33;5000; kumar;25;3000; b.csv contains data as name;age,salary; ajay;40;4500; and c.csv contains name;age,salary; (only headers) Now i want to import and append all these files in to a single dataset. i tried infile statement with *.csv to import all at a time. but i m not getting correct data. please help me . its urgent. thank you in advance

2 Answers   Tech Mahindra,


Categories