DATA Step Functions for Reading and Writing Metadata |
Sets the specified property for the specified object.
Syntax |
rc = METADATA_SETPROP(uri, prop, value, propuri);
Arguments |
Return Values |
Example |
options metaserver="a123.us.company.com" metaport=8561 metauser="myid" metapass="mypassword" metarepository="myrepos"; data _null_; length propuri $200; rc=metadata_setprop("omsobj:Machine?@Name='bluedog'","New Property", "my value",propuri); if rc>=0 then put propuri=; run;
Related Functions |
Copyright © 2010 by SAS Institute Inc., Cary, NC, USA. All rights reserved.