1

在 SAS 9.4 的平台中,我在 SAS EGRC 6.1 中有大约 600 个元用户。

我想将这些用户添加到元组。为此,我使用下面的代码

libname current '/tmp/temp1';   /* for the current metadata */

libname addgrps '/tmp/temp2';  /* current augmented with the changes */

libname updates '/tmp/temp3';  /* for the updates created by the mducmp macro */


options metaserver=abc

        metaport=8561

        metauser='sasadm@saspw'

        metapass='xyz123'

        metaprotocol=bridge

        metarepository=foundation;


%mduextr(libref=current);


proc copy in = current out = addgrps;
/*copy the current data to the directory for the target */
run;

data investigators_1;
set current.person;
where name in ('5806036');
rename objid = memkeyid;
keep objid;
run;


data investigator_group_1;
set current.group_info;
where name='Enterprise GRC: Incident Investigation';
rename id = grpkeyid;
keep id;
run;


proc sql;
create table grpmems as
select * from investigators_1, investigator_group_1;
quit;


proc append base = addgrps.grpmems data = grpmems;
run;


/* use the mducmp macro to create the updates data */
%mducmp(master=addgrps, target=current, change=updates)

/* validate the change data sets */
%mduchgv(change=updates, target=current, temp=work, errorsds=work.mduchgverrors)

/* apply the updates */
%mduchgl(change=updates);

对于最终更新,我尝试了 %mduchgl 和 %mduchglb 但两者都无法获得所需的结果。我用一个用户测试它。

使用 %mduchgl 我得到以下错误

The symbolic reference for A52PDIUF.$A52PDIUF.AP0000NI did not resolve.

使用 %mduchglb 我得到以下错误

The object reference to Person was requested without an identifier.
Errors returned from Proc Metadata prevented objects from being Added, Updated, or Deleted.  Table: work.mduchglb_failedobjs 
identifies 1 such objects.  Consult the SAS Log for the specific Metadata Server errors returned.

关于如何解决错误的任何建议或我应该尝试实现此目标的其他方法。

谢谢。

4

1 回答 1

1

我认为您不应该修改这些数据集!您需要实现的一切都应该可以使用proc metadata(或作为最后手段的数据步进函数)。

这是一个相关的 SAS 社区线程。总结一下——只要你有组/用户 URI,下面的代码片段就会给用户添加一个组:

<Person Id="A5NUQPXO.AP00002V">
  <IdentityGroups>
    <IdentityGroup ObjRef="A5NUQPXO.A500001C" />
  </IdentityGroups>
</Person>

更新 - 为了完整起见,我把它变成了一个宏,在这里描述

https://core.sasjs.io/mm__adduser2group_8sas.html

于 2019-04-26T21:06:26.210 回答