SharePoint 上的 SAS 数据集

SAS Data Sets on SharePoint

我是一名 IT 人员,为使用 SAS 的研究人员提供支持。我们最近已将大多数用户存储从本地 SMB 共享迁移到 MS Teams。问题出现了,是否可以将 SAS 数据集保存在 Teams 存储(Sharepoint 库)中,然后通过同步库访问它们。

这种方法有什么缺陷吗? could/should 是否采取了任何措施来确保没有问题?

有可能,但并不理想。 SAS 9.4 通过称为库名的概念访问数据。 libname 是存储 SAS 可以访问的数据的位置。 SAS 9.4 将数据存储在 .sas7bdat 文件中,但它也可以 access a large variety of other databases natively.

如果您的用户可以set up Sharepoint as a shared network disk, SAS can work with it as if it is local. If not, your users will need to download the .sas7bdat files to their system locally, then re-upload it back to Sharepoint using the Sharepoint REST API. SAS can do this through code

除了方便因素之外,它真的没有问题。它不如共享磁盘或数据库访问那么理想,但理论上可以工作。

如果他们决定将其安装为网络驱动器,我要补充一点,他们应该使用 Sharepoint 作为存储临时数据的地方 read/write 速度。事实上,我会将其设置为只读以防止他们这样做。如果他们需要在本地提取数据,则可以使用 libname 访问权限。