Replies: 2 comments 6 replies
-
Hey, I'm not sure what's 'in' your .dat file. Does whatever SAS code you have in your .sas file process this .dat file as you need? I'll assume so. Since your SAS server is remote from your client machine, SAS would need access to that .dat file to process it. Since it's too big to upload (how big is it? how did you try to upload it?), SAS would need to be able to access it from your client machine (or other remote location) to be able to process it w/ the SAS code you have (submitted to the server via SASPy submit() I expect). So, that would require a filename statement to be able to access that file remotely. SAS FILENAME statement has many access methods for accessing different data, as well as many for access remote files. Here's a link with one, but you can see in the list on the left that there are others which can be used remotely too. I don't know if these all work from ODA, but they may vert well work and allow you to remotely access the .dat file you want SAS to process. https://go.documentation.sas.com/doc/en/pgmsascdc/9.4_3.2/lestmtsglobal/p103pi2vrzn6qhn1e8alrs01jrb7.htm |
Beta Was this translation helpful? Give feedback.
-
If the .dat plain text, you could split it up into 3-4 segments and then upload each one and process the multiple files.
… On Jul 28, 2022, at 10:18 AM, Lia Yin ***@***.***> wrote:
Thanks for the link. The doc did mention a 5G data limit, it also mentions towards the bottom that there is a 1G data limit for single files (I believe). I used the online interface for uploading.
—
Reply to this email directly, view it on GitHub <#473 (reply in thread)>, or unsubscribe <https://github.com/notifications/unsubscribe-auth/AAYDTS3RR5VYXNYJHJBPRADVWKJEDANCNFSM543D54AA>.
You are receiving this because you are subscribed to this thread.
|
Beta Was this translation helpful? Give feedback.
-
I use saspy with Jupyter Lab and OnDemand for Academics. Is there a way to read the .dat file from the PC using a .sas file and save a SAS data file onto the PC? The .dat file is too big to be uploaded.
Beta Was this translation helpful? Give feedback.
All reactions