2016-06-14 2 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 Studio를 사용하고 있습니까? 아니면 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을 참조하십시오.

관련 문제