Replies: 3 comments 2 replies
-
I have to say that I'm not sure, I never use CAS. But I can look into it. Can you show me the code you're running that's accessing CAS, so I can tell that I'm doing the same thing you are. Are you using a CAS libname? I'd like to reproduce what your doing to be sure I'm looking at the right thing. Thanks, |
Beta Was this translation helpful? Give feedback.
-
Hey, I just went and tried something out, which worked. Don't know if this is the answer for how you're doing it, but it worked w/out issue. The key here was using the outdsopts={} option of df2sd() to use append=yes on the data step; which is a supported way to append to a CAS table, as it turns out.
|
Beta Was this translation helpful? Give feedback.
-
Thanks for the input. I'll give this a try. |
Beta Was this translation helpful? Give feedback.
-
I'm trying to append a SAS dataframe to CAS table with the append() function. However this gives me an error "ERROR: Update access is not supported for file PUBLIC.LSTM_TRAINING_INPUT_2_TMP.DATA."
I understand that in CAS the proc append is not supported and that is the cause of the error from append() function. Is there any alternative that would support an append operation with saspy.
I could create a new dataset with sas.dataframe2sasdata() and do a dataset with append=yes option ( "data lib.SAS-dataset (append=yes) ; set .... " ) however with this I'm getting column size mismatch issues so this is not an option.
Is there any other alternative available or a fix to the append() function to support CAS tables?
Beta Was this translation helpful? Give feedback.
All reactions