When you are creating multiple indexes on an SPD Server table, specifies whether to create the indexes in parallel.
| Valid in: | SPD Server |
| Default: | No |
| Interaction: | Corresponding macro variable is SPDSIASY. |
creates the indexes in parallel.
creates a single index at a time.
PROC DATASETS lib=mydatalib; modify a(asyncindex=yes); index create x; index create y; index create comp=(x y); quit;