SAS:是否可以将编译后的宏存储在 sasmacr 以外的目录中?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
来自 SAS 网站
From the SAS Site
您可以通过使用系统选项 MAUTOSOURCE 和 SASAUTOS 来指示 SAS 在何处搜索存储的宏。
You can by using the system options MAUTOSOURCE and SASAUTOS to direct SAS where to search for stored macros.