删除库中的所有数据集
这可能有一个非常简单的答案。我将如何删除库中的所有数据集?我做了类似的事情
proc datasets library=lib;
delete _all_;
quit;
,但只是尝试删除名为 _all_
的数据集。我是否必须在 delete
命令中手动列出所有数据集?
This probably has a really simple answer. How would I go about deleting all the datasets in a library? I did something like
proc datasets library=lib;
delete _all_;
quit;
but that just tries to delete the dataset called _all_
. Do I have to manually list all the datasets in the delete
command?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
使用 proc 数据集中的 Kill 选项删除库中的所有文件。
Use the kill option in the proc dataset to delete all files in a library.