Chapter Contents

Previous

Next
SAS Catalog: _deleteMember

SAS Catalog: _deleteMember



Deletes a catalog entry from the catalog associated with a SAS Catalog object


Syntax
Example
See Also

Syntax

CALL SEND (catalog-object-id, '_deleteMember', entry-name);

Argument Type Description
entry-name C specifies the two-level name (entryname.entrytype) of the catalog entry to be deleted


Example

This example deletes SASUSER.CAT1.MYENTRY.PROGRAM:

catclass=loadclass('sashelp.fsp.catalog.
                    class');
catobj=instance(catclass);
call send (catobj, '_setup_', 'sasuser.cat1');
call send (catobj, '_delete_member_',
          'myentry.program');

See Also

_delete


Chapter Contents

Previous

Next

Top of Page

Copyright 1999 by SAS Institute Inc., Cary, NC, USA. All rights reserved.