what is portability of sas programmes?

Answers were Sorted based on User's Feedback



what is portability of sas programmes?..

Answer / devashish

Transferring SAS Program from one remote Location to
anathor is portabilty of SAS Program

Access to SAS/CONNECT Required

also Transferring a dataset or SAS file requires Transport
format

Use of XPORT and porc Copy

Is This Answer Correct ?    8 Yes 0 No

what is portability of sas programmes?..

Answer / jim e

I would suggest that this is the ability to run SAS code
under different operating systems. Obviously there are OS
restrictions such as how the libname statement syntax is
constructed.

Basic SAS code will transport between OS but you need to
check some things like operators. If you use NE, GT, LT,
GE, LE then you wouldn't need to change those aspects of
your code between MVS and Windows wheras ¬=, < and > etc
would need to be changed. The concatenation operator !! is
usable in both too. If you use SAS Connect with (proc
upload and proc download) to port you code and data between
OS then SAS takes care of these changes for you.

Is This Answer Correct ?    2 Yes 0 No

Post New Answer

More SAS Interview Questions

Describe how you would pass data to macro.

3 Answers  


what are the best practices to process the large data sets in sas programming? : Sas-administrator

0 Answers  


Write SAS codes to compare two datasets. Suppose the allowable difference is 0.1.

2 Answers  


WHAT DIFFERRENCE DID YOU FIND AMONG VERSION 6 8 AND 9 OF SAS.

4 Answers   Genzyme,


What are the difference between sas functions and procedures?

0 Answers  






in ods is there any lib's

2 Answers   SAS,


PROC SQL always ends with QUIT statement.Why cant you use RUN in PROQ SQL ?

7 Answers   HP,


What is the purpose of _error_?

1 Answers   Quintiles,


what is factor analysis? : Sas-administrator

0 Answers  


Describe the function and untility of the most difficult SAS macro that you have written.

0 Answers  


i want to upload titles and footnotes to excel file?how it is possible?

1 Answers  


data task; input id date date9. visit; cards; 101 01jan2015 1 101 02jan2015 2 101 06jan2015 3 102 04jan2015 1 102 07jan2015 2 102 12jan2015 3 103 06jan2015 1 103 13jan2015 2 ; run; write a program to find out missing dates between visits by each subject.

1 Answers  


Categories