Search Results

2 résultats trouvés Page 1 / 1
Code SAS
Voir

Deleting Users from Metadata

data _null_; /* Read in the data set. */ set work.delusers; /* Build a URI from the supplied user name. */ obj="omsobj:Person? @Name='"||trim(username)||"'"; /* Delete the Logins associated with the user. */ rc=metadata_delassn(obj,"Logins"); /* Check if the de...

Code SAS
Voir

Orphan Foreign Key Cleanup in Metadata

data _null_; /* Initialize variables. */ length FK_id PT_id $17 type FK_uri PT_uri $50 PT_engine $64 PT_name $32 FK_name $60; call missing ( of _character_ ); retain mode "&MODE"; /* Define a query for ForeignKey FKobjects that do not have a PartnerUniqueKey association */ FK_obj="oms...