2016-06-14 3 views
0

データをアップロードするコードはこちらです。SASスタジオでデータをアップロードできません

Data HBAT; 
Infile '/home/my_user_name/my_content/HBAT_652.xlsx' DLM = '09'X TRUNCOVER; 
Input ID X1 X2 X3 X4 X5 X6 X7 X8 X9 X10 X11 X12 X13 X14 X15 X16 X17 X18 X19 
X20 X21 X22 X23; 
*; 

このマイエラーが発生します。

エラー:SASがロックダウン状態になっている場合、パス/home/tmaciver7840/my_content/HBAT_652.xlsxはアクセス可能なパスのリストにありません。

誰かが間違っていたことを知っていますか?ありがとう

+0

サーバーでSASスタジオを使用していますか?またはこれはSAS University Editionを実行している仮想マシンですか?または、他の何か? – Joe

+0

遅れて申し訳ありません。私はSAS大学版を実行しています – Tomas

答えて

0

このエラーは、共有フォルダを正しく設定していないことを示しています。

Here is another error that you might receive when attempting to access your data:

ERROR: The path /users/xxyyzz/Downloads/Cheatsheet.xlsx is invalid because it is not in the list of accessible paths when SAS is in the lockdown state.

If you see an error similar to this one, you might be referencing an improper folder in which to store your files. Review the instructions below to ensure that your shared folder is set up correctly.

Alternatively, if your folder is set up properly, the problem might be that you are not accessing the folder properly. To make sure that you are accessing the folder correctly, see the LIBNAME/FILENAME documentation SAS University Edition: Help Center page referenced above.

サーバー(およびないSAS大学版)を使用している場合は、管理者が自分のデータファイルがへに格納されているフォルダを追加する必要があります:あなたが適切にフォルダを共有する方法を読んで示唆しているSAS Problem Note 53333を参照してください。承認された場所のリストたとえば、sascommunity.orgのexplanation of LOCKDOWNを参照してください。

関連する問題