BookmarkSubscribeRSS Feed
V_Andy
Fluorite | Level 6

Hello, everybody!

We can create simple indexes using the following statement.

Proc SQL;

Create Index {Index_name} On {Table_name} (Table_variable)

;

Quit;

Sometimes we have more than one variable to match data in datasets.

....

Where

A.Field1 = B.Field1 And

A.Field2 = B.Field2

....

To decrease work time it is necessary to create indexes. But in this situation it is not so efficient to create two simple indexes on Field1 and Field2, especially if data in Field1 or Field2 have only two or three variants (1, 2 and 3 for example).

In Oracle we can create complex indexes on two or more fields.

How can I create complex index in SAS Dataset?

2 REPLIES 2
LinusH
Tourmaline | Level 20

The term you should search for in the SAS on-line doc is "composite index".

/Linus

Data never sleeps
Ksharp
Super User

Proc SQL;

Create Index Index_name On Table_name (Field1,Field2)

;

Quit;

Or

proc datasets library=work nolist;

modify table_name;

index create index_name=(field1 field2 );

quit;

Ksharp

sas-innovate-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

Discussion stats
  • 2 replies
  • 841 views
  • 0 likes
  • 3 in conversation