作业帮 > 综合 > 作业

关于SAS的问题单位里许多program中都已RSUBMIT开始和以ENDRSUMIT结束,这两个分别代表什么意思哪?

来源:学生作业帮 编辑:搜搜做题作业网作业帮 分类:综合作业 时间:2024/05/15 09:49:35
关于SAS的问题
单位里许多program中都已RSUBMIT开始和以ENDRSUMIT结束,这两个分别代表什么意思哪?
关于SAS的问题单位里许多program中都已RSUBMIT开始和以ENDRSUMIT结束,这两个分别代表什么意思哪?
Marks the beginning of a block of statements that a client session submits to a server session for execution.
The RSUBMIT command and the RSUBMIT statement cause SAS programming statements that are entered in the local environment to execute on a remote SAS session.
你用到了远程服务器,这个将program提交到远程服务器执行.
SYNTAX为:
RSUBMIT <remote-session-id><CONNECTWAIT=YES|NO> <MACVAR=value> <CONNECTSTATUS=YES|NO> <SYSRPUTSYNC=value> <USER=username|_PROMPT_> <PASSWORD=password|_PROMPT_> <PERSIST=YES|NO> <SCRIPT=value>;
至于Rsubmit与Endsubmit这个block,When SAS encounters an RSUBMIT statement, it sends the SAS statements in the RSUBMIT block to SAS/CONNECT. SAS/CONNECT continues parsing the statements until it encounters the semicolon that follows the ENDRSUBMIT statement.

参考: