BookmarkSubscribeRSS Feed
ThomasH
Calcite | Level 5
Hello all,

I am facing an issue here which I cannot find a reason for - I am assuming parallel access, but I am not sure.

I am connecting to an external system to receive a data set and very rarely the system terminates with the error as stated below.

Do you have any idea what this might be?

Thanks,
Thomas

proc copy in=datain out=libMem memtype=data;
select Z1AAB.Z1KTU;
run;

NOTE: Copying datain.Z1KTU to Z1AAB.Z1KTU (memtype=DATA).
NOTE: BUFSIZE is not cloned when copying across different engines. System Option for BUFSIZE was used.
NOTE: There were 51597 observations read from the data set datain.Z1KTU.
_0000030 // What would that be???
ERROR: File datain.Z1KTU.DATA has not been saved because copy could not be completed.
2 REPLIES 2
DanielSantos
Barite | Level 11
Somethings wrong with your syntax.

Assuming you are trying to copy DATAIN.Z1KTU to LIBMEM.Z1KTU.

Try this:
[pre]
proc copy in=datain out=libMem memtype=data;
select Z1KTU;
run;
[/pre]
Loose the Z1AAB libname ref.
Source libname goes at IN= and destination at OUT=

Are you copying data across systems?

Cheers from Portugal.

Daniel Santos @ www.cgd.pt
sbb
Lapis Lazuli | Level 10 sbb
Lapis Lazuli | Level 10
Additional SAS code (pasted from the SAS log) is needed, as well, you would benefit from providing SAS version and OS information (to include whether SAS is running locally or on a remote server). Most importantly, paste all related SAS code from your log to start.

Scott Barry
SBBWorks, Inc.

SAS Innovate 2025: Save the Date

 SAS Innovate 2025 is scheduled for May 6-9 in Orlando, FL. Sign up to be first to learn about the agenda and registration!

Save the date!

How to Concatenate Values

Learn how use the CAT functions in SAS to join values from multiple variables into a single value.

Find more tutorials on the SAS Users YouTube channel.

SAS Training: Just a Click Away

 Ready to level-up your skills? Choose your own adventure.

Browse our catalog!

Discussion stats
  • 2 replies
  • 962 views
  • 0 likes
  • 3 in conversation