Answer Posted / solasa
SAS CATALOG IS A TYPE OF SPECIAL SAS FILE THAT CONTAINS
ELEMENTS.MOST COMMMON ELEMENTS IN SAS CATALOG ARE 'FORMAT'
'SOURCE' OUTPUT,LOG EC.
PROC FORMAT IS USED TO CREATE THE FORMAT AND STORE THEN
IN THE SASCATALOG.
proc format library=SMA;
value $region
'1'='n orthwest'
'2'='southwest'
'3'='central'
;
run;
FORMAT NAME 'REGION' IS STORED IN CATALOG IN 'SMA' LIBRARY
TO KNOW THE CONTENTS OR TO MOVE THE CONTENTS OF ASA CATALOG
USE THE PROCEDURE 'PROC CATALOG'
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
Have you ever used the SAS Debugger?
What is the use of PROC gplot?
Difference between sum function and using “+” operator?
explain the difference between alternate key, business key, foreign key, generated key, primary key, retained key and surrogate key ? : Sas-di
what is the purpose of _error_? : Sas programming
If a variable contains only numbers, can it be a character data type?
Give an example where SAS fails to convert character value to numeric value automatically?
Mention how to limit decimal places for the variable using proc means?
What does the RUN statement do?
What are the features of base sas system?
Are you sensitive to code walk-throughs peer review or QC review?
What are the different types of sas functions?
What is the difference between one to one merge and match merge? Give an example.
what are the softwares and applications that are used most frequently used by sas bi applications developers? : Sas-bi
what is the difference between: x=a+b+c+d; and x=sum (of a, b, c ,d);? : Sas programming