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-2024.png

Don't miss out on SAS Innovate - Register now for the FREE Livestream!

Can't make it to Vegas? No problem! Watch our general sessions LIVE or on-demand starting April 17th. Hear from SAS execs, best-selling author Adam Grant, Hot Ones host Sean Evans, top tech journalist Kara Swisher, AI expert Cassie Kozyrkov, and the mind-blowing dance crew iLuminate! Plus, get access to over 20 breakout sessions.

 

Register now!

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.

Click image to register for webinarClick image to register for webinar

Classroom Training Available!

Select SAS Training centers are offering in-person courses. View upcoming courses for:

View all other training opportunities.

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