what is SAS/Access and SAS/Connect?what are the uses?
Answers were Sorted based on User's Feedback
Answer / kishore
sas access is a software which is used to read data stored
in database such as oracle..
sas connect provides the connection between the hosts and
enable to run statement in a remote operating
| Is This Answer Correct ? | 5 Yes | 1 No |
Answer / vijji
Sas Acesss : SAS Acess ,acess the data from different
databases(like oracle,sql etc..)
SAS connecting: system is Connecting to server or client
system
| Is This Answer Correct ? | 4 Yes | 1 No |
Answer / dev
sas access : using this software we can read the data without converting data in to data set and sas connect is used when we write a sas code on one computer and submit it on other computer for processing
| Is This Answer Correct ? | 2 Yes | 0 No |
In the following DATA step, what is needed for ‘fraction’ to print to the log? data _null_; x=1/3; if x=.3333 then put ‘fraction’; run;
What is the use of %include statement?
Can anyone help me about SAS Realtime scenarios in Clinical field
What report output formats can you generate using SAS?
1.What is the difference between _NULL_ , _ALL_, and _N_? 2.What are the uses of _NULL_ using in Data Steps? Can we _NULL_ in Proc Steps also? 3.How do call the macro variable in Data Steps? 4.How to construct Pivot tables in Excel Using SAS?
I have a dataset with variables empid and doj how to calculate retirement age?
CHOOSE ANY ONE OF THE PROCEDURE FOLLOWING TO GENERATE THE REPORTS? HOW CAN YOU SAY IT IS BETTER THAN THE OTHER? AND DEFERENCIATE THESE TWO ? 1). REPORT PROCEDURE 2). TABULATE PROCEDURE
How to write duplicate records into a separate dataset using sort?
Why double trailing @@ is used in input statement?
How would you compile all macros from a folder in a study, within the autoexec program?
how do you want missing values handled? : Sas programming
1.we can execute a macro with in a macro,by using call symput and symget can any one give me one example? 2.We can create the macro variables by using %let,%do,macro parameters,INTO clause in proc sql and call symput, can any one give me example to create macro variable with INTO clause and call symput? 3.