Chapter Contents

Previous

Next
SAS Catalog: _rename

SAS Catalog: _rename



Renames the SAS catalog that is associated with a SAS Catalog object


Syntax
Example
See Also

Syntax

CALL SEND (catalog-object-id, '_rename', new-catalog-name);

Argument Type Description
new-catalog-name C specifies the new one-level catalog name for the catalog associated with catalog-object-id


Example

This example renames the SAS catalog SASUSER.CAT1 to SASUSER.CAT2:

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

See Also

_renameMember


Chapter Contents

Previous

Next

Top of Page

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