what is the frontend and backend of sas?
Is sas is a progaming langauge or tool?
on which langauge sas depends?
Answers were Sorted based on User's Feedback
Answer / b123
SAS is an integrated 4 GL software solutions package. It is
both frontend and backend indepent laguage.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / aruna
SAS is an ETL, Reporting and Analysis tool, you can do all
these three functionalities with SAS.
front is also provided by SAS,
For backend, SAS has it's own database (in the form of
DATASETS) and also you can connect to any database as
backend like oracle, DB2, Teradata Etc..
Hope this helps.
| Is This Answer Correct ? | 6 Yes | 1 No |
Answer / ramesh varma
SAS is not only frontend and backend also.
sas is a progaming langauge and tool.
SAS depands on C langauge.
| Is This Answer Correct ? | 5 Yes | 1 No |
define table lookup and how may ways it can be done...explian
how will you locate the sas platform applications? : Sas-bi
What is the difference between %local and %global?
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;
Differentiate between ceil and floor functions.
What are the best sas programming practices for handling very large datasets? : sas-grid-administration
How to limit decimal places for the variable using proc means?
libname deepak 'C:\SAS Files'; proc format; invalue convert 'A+' = 100 'A' = 96 'A-' = 92 'B+' = 88 'B' = 84 'B-' = 80 'C+' = 76 'C' = 72 'F' = 65; data deepak.grades; input ID $3. Grade convert.; *format Grade convert. ; datalines; 001 A- 002 B+ 003 F 004 C+ 005 A ; proc print data = deepak.grades; run; I get the following output Obs ID Grade 1 001 . 2 002 . 3 003 . 4 004 . 5 005 . I don’t understand why Grade shows up as a missing value. Everything seems fine, including ID $3. Now, in case I use ID : $3. Or use column input, I get the desired output. Kindly help Deepak
What is the length assigned to the target variable by the scan function?
Hi I have list of products in a dataset, which are classified by other name for eg:- there is a product A> Malambo Shiraz Malbec 750ML(0388) which is a Red wine.Now i need to generate a report where it shows if this product appears then it should b displayed as red wine,similarly for other products and other classification. I dont wan use proc format.
How to create a permanent sas data set?
how does sas handle missing values in formats? : Sas programming