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

Join us for SAS Innovate April 16-19 at the Aria in Las Vegas. Bring the team and save big with our group pricing for a limited time only.

Pre-conference courses and tutorials are filling up fast and are always a sellout. Register today to reserve your seat.

 

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
  • 734 views
  • 0 likes
  • 3 in conversation