SAS:是否可以将编译后的宏存储在 sasmacr 以外的目录中?

发布于 2024-12-14 07:21:53 字数 152 浏览 0 评论 0原文

SAS 宏被编译并存储到名为 sasmacr 的目录中。有没有办法将它们存储在具有不同名称的目录中?

该用例是一个测试工具,我希望在命名空间中创建测试用例宏的集合,其中它们不能与正在测试的程序中定义的宏发生冲突。我的解决方法是为所有测试宏的名称添加我认为唯一的字符串的前缀。

SAS macros are compiled and stored into a catalog named sasmacr. Is there a way to store them in a catalog with a different name?

The use case is a test harness where I wish to create a collection of test case macros in a namespace where they cannot clash with macros defined in the program being tested. My workaround is to prefix all my test macros' names with what I believe is a unique string.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

2024-12-21 07:21:53

来自 SAS 网站

libname mymacs 'SAS-data-library';
filename mymacros catalog 'mymacs.myautos';

From the SAS Site

libname mymacs 'SAS-data-library';
filename mymacros catalog 'mymacs.myautos';
记忆里有你的影子 2024-12-21 07:21:53

您可以通过使用系统选项 MAUTOSOURCE 和 SASAUTOS 来指示 SAS 在何处搜索存储的宏。

You can by using the system options MAUTOSOURCE and SASAUTOS to direct SAS where to search for stored macros.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文