Chapter Contents |
Previous |
Next |
IDELETE |
Category: | SAS Table |
Syntax | |
Details | |
Example | |
See Also |
Syntax |
sysrc=IDELETE(table-id,key-name); |
0 | successful |
0 | not successful |
Type: Numeric
Type: Numeric
Type: Character
Details |
In order to delete an index for a SAS table, you must open the table in UTILITY mode (see OPEN for details).
You can also delete indexes using
Example |
Delete an index for the SAS table WORK.INVOICE. The name of the index key is ITEMTYPE.
tableid=open('work.invoice','v'); rc=idelete(tableid,'itemtype');
See Also |
Chapter Contents |
Previous |
Next |
Top of Page |
Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.