Are you familiar with special input delimiters? How are they
used?

Answers were Sorted based on User's Feedback



Are you familiar with special input delimiters? How are they used?..

Answer / madhu

special delimiters are dlm and dsd,missover.

Is This Answer Correct ?    5 Yes 2 No

Are you familiar with special input delimiters? How are they used?..

Answer / ganesh

dsd and dlm='' are the special delimiters, these are used
in the infile /file statements, this is very flexible to
instructs sas to read and print the datavalues.

Is This Answer Correct ?    2 Yes 0 No

Are you familiar with special input delimiters? How are they used?..

Answer / jahnavi

delimiters are special characters which delimits data values.
dsd and missover are not delimiters.

Is This Answer Correct ?    2 Yes 0 No

Are you familiar with special input delimiters? How are they used?..

Answer / santhi swaroop

DELIMITRS ARE THE SPECIAL CHARACTERS THET HAD BEEN GIVEN
IN THE DATA .

DELIMETERS ARE MOST SENSITIVE.

FOR EX:(, " ') AND MANY MORE.

SYNTAX

DATA SANTHI;
"PATH "DLM=" ," ;
INPUT ID NAME$ AGE SAL;
RUN;


HERE , WAS THE DELIMETER

Is This Answer Correct ?    0 Yes 4 No

Post New Answer

More SAS Interview Questions

Hello, I have PROC SQLs results group by 3 fields and I use SUM and COUNT functions in SQL. The problem is when I try to display my result with PROC TABULATE. I am getting very big numbers. I believe I make a mistake some where in Tabulate. Here is my Proc Tabulate. PROC TABULATE DATA=OUT04_05 FORMAT=12.; CLASS YR CENTRE VISA / PRELOADFMT EXCLUSIVE; VAR NEWUSER FRAUD TRANSFER AUTUSER REISSUE; TABLE CENTRE ALL, (YR ALL)*VISA, (NEWUSER*F=COMMA12. AUTUSER*F=COMMA12. FRAUD*F=COMMA12. TRANSFER*F=COMMA12. REISSUE*F=COMMA12.) / MISSTEXT={LABEL='0'} PRINTMISS RTS=20; FORMAT VISA VISAFMT.; KEYLABEL SUM = ' ' ALL = 'TOTAL'; LABEL YR = 'DATE YEAR' NEWUSER = 'TOTAL NEW ACCT' TRANSFER = 'TOTAL TRANSFER' FRAUD = 'TOTAL FRAUD TRANSFER' AUTUSER = 'TOTAL AUTH USERS' REISSUE = 'TOTAL REISSUE'; When I code it like : NEWUSER*N*F=COMMA12. AUTUSER*N*F=COMMA12. I get same amount numbers but to find a NEWUSER I use COUNT(*) and to find AUTUSER I use SUM(xxxx) function so both result shouldn’t be the same my problem is in this point. Could you tell me where the problem in code is. How can I display my result? TX.

1 Answers  


What is the sas data set? : sas-grid-administration

1 Answers  


Enlist the functions performed by sas.

1 Answers  


how does sas handle missing values in a merge? : Sas programming

1 Answers  


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

1 Answers  


How do you convert basic cube to transaction cube and transaction cube to basic cube?

1 Answers  


what is ae onset date n what is RDS

1 Answers   Accenture,


What is program data vector (pdv) and what are its functions?

1 Answers  


how can u extract,transform and loading?

2 Answers   CitiGroup,


When merging 2 datasets with a common variable (not merge key), how to keep both?

3 Answers  


How do you read in the variables that you need?

9 Answers   Accenture,


I use NOCUM/NOPERCENT option in the tables statement like this Proc freq data = deepak; tables x y /nocum nopercent; run; Here I get nopercent and nocum in the output only for variables x and y. How do i do it for all variables? Deepak

1 Answers  


Categories