what is SAS ACCESS AND SAS CONNECT ? Give an example and
data statements used.
Answer / raju v
SAS/CONNECT software is a SAS client/server toolset that
provides scalability
through parallel SAS processing. SAS/CONNECT provides users
and applications
developers the ability to manage, access, and process data
in a distributed and parallel
environment
SAS/ACCESS engines provide seamless and transparent
read/write/update access to more than 60 data sources,
including relational and nonrelational databases
| Is This Answer Correct ? | 9 Yes | 0 No |
At compile time when a SAS data set is read, what items are created?
Describe the ways in which you can create macro variables?
Name and describe three SAS functions that you have used, if any?
Difference between nodup and nodupkey options?
What does proc print, and proc contents are used for?
how could you generate test data with no input data? : Sas programming
Give some examples where proc report’s defaults are same as proc print’s defaults?
How can a SAS WEB REPORT STUDIO USER identify which report tabs they have been permitted without entering the SAS WEB REPORT STUDIO
If you were told to create many records from one record, show how you would do this using array and with proc transpose?
What is the difference between verification and validation?
hi guys ...i have one query... data abc; input s w k g o t a m; cards; 1 2 3 4 5 6 7 8 2 3 4 5 6 7 8 9 ; run; i want the output to be the sorted order(only variables).observations should not be changed..
I need to find the numeric field which contains blank in between..Ex:123 456...there is blank in between the 123 456..I need to know if there is any SAS function to find a field.. Please suggest...