BookmarkSubscribeRSS Feed
qwerty12
Fluorite | Level 6
proc sql;
	create table vda_mnr as
		select a.*,
			   b.poa1,
			   b.poa2,
			   b.poa3,
			   b.poa4,
			   b.poa5,
			   b.poa6,
			   b.poa7,
			   b.poa8,
			   b.poa9,
			   b.poa10,
			   b.poa11,
			   b.poa12,
			   b.poa13,
			   b.poa14,
			   b.poa15,
			   b.poa16,
			   b.poa17,
			   b.poa18,
			   b.poa19,
			   b.poa20,
			   c.clm_aud_nbr

			from sep.current_mnr_vardays a
			left join sep.ova_clmshdr_inp b
				on a.case_id=b.case_id
			left join sep.ip_confinement c
				on b.membersystemid=c.mbr_sys_id and
				   b.adm_dt=c.fst_srvc_dt

		where a.Low_Perdiems not in ('Y') and 
			  a.Med_Prime not in ('Y') and 
			  a.MH_BH_Flag in ('N') and 
			  a.Admits=1;
quit;

qwerty12_0-1692792534395.pngqwerty12_1-1692792662069.png

The file is getting damaged and i'm not able to move to further process, tried to split the above piece of code into 3 parts and ran but again same issue, and 50% of sas workspace is available can anyone suggest how to proceed with this piece of code

1 REPLY 1
JosvanderVelden
SAS Super FREQ
Can you verify if the issue is with the work location? For instance by using a temporary folder with enough space and run the code using a libname pointing to that temporary location.

SAS INNOVATE 2024

Innovate_SAS_Blue.png

Registration is open! SAS is returning to Vegas for an AI and analytics experience like no other! Whether you're an executive, manager, end user or SAS partner, SAS Innovate is designed for everyone on your team. Register for just $495 by 12/31/2023.

If you are interested in speaking, there is still time to submit a session idea. More details are posted on the website. 

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.

Get the $99 certification deal.jpg

 

 

Back in the Classroom!

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

View all other training opportunities.

Discussion stats
  • 1 reply
  • 117 views
  • 0 likes
  • 2 in conversation