what is the need of INDEX in datasets?

Answers were Sorted based on User's Feedback



what is the need of INDEX in datasets?..

Answer / aravind9882

index is separate file attached to dataset.
create index on variable that is used in 'by processing'
or 'where processing'.
it will enhance the performance and fast retrieving the
observations when you use indexed variable in where
statement.
you need not to sort the variable if it is indexed when u
use it in "by statement".
create an index on variable when:
-u have to retrieve observations not more than 15% of d
dataset.
-create index on variable where 'by-variable' will have
more than 8 disctint values.

index is of two types:
simple index-created on single variable.
composite index-created on 2 or more variables.
index can b created using proc datasets, proc sql and
datastep.

Is This Answer Correct ?    9 Yes 0 No

what is the need of INDEX in datasets?..

Answer / abhilash

by using index we search a particular string or sub string
it returns the position where the sub string is located
for ex:
data index;
name="india is greatest country";
idx-index(name,"great");
run;
it returns the great sub string position(10)

Is This Answer Correct ?    6 Yes 1 No

what is the need of INDEX in datasets?..

Answer / guest

Generally SAS reads The obseravtions in sequentiall manner.
it takes a lot of time .to aviod this we are using index.
ithis index concept usefull when we dealing with large
datsets.

Is This Answer Correct ?    2 Yes 0 No

what is the need of INDEX in datasets?..

Answer / hari

This is mainly useful for the fast retrival of data (For ex
we have 559 in 1 lac obs then by index we can get the data
with out reading all the observations

Index are 2 type:

1.simple
2.Composite


ex-for simple


proc datasets lib=college;
modify time;
index create class;
run;


ex-for composite:


proc datasets library=college;
modify time;
index create names(=(name school);
run;

Is This Answer Correct ?    1 Yes 0 No

what is the need of INDEX in datasets?..

Answer / sushil kumar

Index Function is used to search a Character in a String and returns position of the String

Is This Answer Correct ?    1 Yes 0 No

what is the need of INDEX in datasets?..

Answer / dvsr

Without index if we executed the query it will go to the
full table scan. If any data set or table has the index
first query checks that particular If condition or where
condition in that column then it will go to the remaining
columns.

Is This Answer Correct ?    1 Yes 1 No

Post New Answer

More SAS Interview Questions

In sas admin differentiate between roles and capabilities? : sas-grid-administration

0 Answers  


What is substr function?

0 Answers  


/* To determine the maximum and minimum of V1 */ data before3; input v1 v2 v3; cards; 3 2 1 4 6 5 2 1 3 6 5 4 1 3 2 5 4 6 ; run;

5 Answers  


Does SAS ‘Translate’ (compile) or does it ‘Interpret’? Explain.

4 Answers   Accenture,


how do u test a pros sql(works or not) without executing it?

1 Answers   DELL, HSBC,






in the flow of data step processing, what is the first action in a typical data step? : Sas programming

0 Answers  


if you were told to create many records from one record, show how you would do this using array and with proc transpose? : Sas programming

0 Answers  


i have a macro variable var1,var2. i want titles for the each macro variable separately? how it is possible?

1 Answers   L&T,


what is the difference between floor and ceil functions in sas? : Sas-administrator

0 Answers  


How will you generate test data with no input data?

0 Answers  


How would you delete duplicate observations?

10 Answers   Accenture,


What are the differences between proc means and proc summary?

0 Answers  


Categories