从SAS元数据服务器获取用户标识

时间:2012-11-16 17:47:34

标签: sas sas-metadata

我正在使用IOM连接到元数据服务器的配置 - 因此我的环境中没有自动宏变量来确定用户ID(我们使用带有通用主机帐户的池化工作区服务器)。

是否有一小段代码可用于查询元数据服务器以获取SAS用户ID?

2 个答案:

答案 0 :(得分:1)

以下是漫长的啰嗦,并且可能会缩短 - 但它确实起作用了!

data _null_;
call symput('login_id',''); /* initialise to missing */
n = 1;
length loginUri person $ 512;
nobj = metadata_getnobj("omsobj:Login?*",n, loginUri);
if (nobj>0) then do;
    length __uri __objName __porig personUri $256;
    __porig = loginUri;
    __uri = '';
    __objName = '';
    __n = 1;
    __objectFound = 0;
    personUri = "";
    __numObjs = metadata_getnasn(__porig ,"AssociatedIdentity", 1, __uri);
    do until(__n > __numObjs | __objectFound );
        __rc = metadata_getattr(__uri, "PublicType", __objName);
        if __objName="User" then do;
            __rc=metadata_getattr(__uri, "Name", __objName);
            __objectFound = 1;
            personUri = __uri;
        end;
        else do;
            __n = __n+1;
            rc = metadata_getnasn(__porig, "AssociatedIdentity", __n, __uri);
        end;
    end;
    if upcase("N")="Y" and not __objectFound then do;
        put "*ERROR*: Object with  PublicType=" "User" " not found for parent " loginUri " under AssociatedIdentity association";
        stop;
    end;
    ;
    rc = metadata_getattr(personUri, "Name", person);
    call symput("login_id", trim(person));
end;
run;
%put &login_id;

答案 1 :(得分:0)

我不知道它有多短......但这个link侧重于查询元数据。